Skip to content

Commit

Permalink
refactor: rename repo to starter-angular-19
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnygerard committed Dec 13, 2024
1 parent c3671f0 commit a893b42
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
12 changes: 6 additions & 6 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": 1,
"newProjectRoot": "projects",
"projects": {
"ng-fem-starter": {
"starter-angular-19": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
Expand Down Expand Up @@ -42,7 +42,7 @@
"build": {
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/ng-fem-starter",
"outputPath": "dist/starter-angular-19",
"index": "src/index.html",
"browser": "src/main.ts",
"polyfills": ["zone.js"],
Expand Down Expand Up @@ -89,10 +89,10 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"buildTarget": "ng-fem-starter:build:production"
"buildTarget": "starter-angular-19:build:production"
},
"development": {
"buildTarget": "ng-fem-starter:build:development"
"buildTarget": "starter-angular-19:build:development"
}
},
"defaultConfiguration": "development"
Expand All @@ -118,11 +118,11 @@
"e2e": {
"builder": "playwright-ng-schematics:playwright",
"options": {
"devServerTarget": "ng-fem-starter:serve"
"devServerTarget": "starter-angular-19:serve"
},
"configurations": {
"production": {
"devServerTarget": "ng-fem-starter:serve:production"
"devServerTarget": "starter-angular-19:serve:production"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion e2e/example.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ test("has title", async ({ page }) => {
await page.goto("/");

// Expect a title "to contain" a substring.
await expect(page).toHaveTitle(/NgFemStarter/);
await expect(page).toHaveTitle(/StarterAngular19/);
});
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@
"node": "22",
"npm": "10"
},
"name": "ng-fem-starter",
"name": "starter-angular-19",
"private": true,
"scripts": {
"build": "ng build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"ng": "ng",
"serve:ssr:ng-fem-starter": "node dist/ng-fem-starter/server/server.mjs",
"serve:ssr:starter-angular-19": "node dist/starter-angular-19/server/server.mjs",
"start": "ng serve",
"test": "ng test",
"test:ci": "ng test --no-watch --no-progress --browsers=ChromeHeadless",
Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<title>NgFemStarter</title>
<title>StarterAngular19</title>
<base href="/" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<link href="/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png" />
Expand Down

0 comments on commit a893b42

Please sign in to comment.