Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions angular/my-awesome-app/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ yarn-error.log
/libpeerconnection.log
testem.log
/typings
__screenshots__/

# System files
.DS_Store
Expand Down
2 changes: 1 addition & 1 deletion angular/my-awesome-app/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MyAwesomeApp

This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 19.0.1.
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 21.0.0.

## Development server

Expand Down
40 changes: 7 additions & 33 deletions angular/my-awesome-app/angular.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"cli": {
"packageManager": "npm"
},
"newProjectRoot": "projects",
"projects": {
"my-awesome-app": {
Expand All @@ -11,14 +14,9 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"builder": "@angular/build:application",
"options": {
"outputPath": "dist/my-awesome-app",
"index": "src/index.html",
"browser": "src/main.ts",
"polyfills": [
"zone.js"
],
"tsConfig": "tsconfig.app.json",
"assets": [
{
Expand All @@ -28,8 +26,7 @@
],
"styles": [
"src/styles.css"
],
"scripts": []
]
},
"configurations": {
"production": {
Expand All @@ -56,7 +53,7 @@
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"builder": "@angular/build:dev-server",
"configurations": {
"production": {
"buildTarget": "my-awesome-app:build:production"
Expand All @@ -67,33 +64,10 @@
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"polyfills": [
"zone.js",
"zone.js/testing"
],
"tsConfig": "tsconfig.spec.json",
"assets": [
{
"glob": "**/*",
"input": "public"
}
],
"styles": [
"src/styles.css"
],
"scripts": []
}
"builder": "@angular/build:unit-test"
}
}
}
},
"cli": {
"analytics": false
}
}
2 changes: 1 addition & 1 deletion angular/my-awesome-app/cypress/support/component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import './commands'
// Alternatively you can use CommonJS syntax:
// require('./commands')

import { mount } from 'cypress/angular'
import { mount } from 'cypress/angular-zoneless'

// Augment the Cypress namespace to include type definitions for
// your custom command.
Expand Down
44 changes: 0 additions & 44 deletions angular/my-awesome-app/karma.conf.js

This file was deleted.

Loading
Loading