Skip to content

Commit

Permalink
Merge pull request #86 from JsDaddy/feat/control-flow
Browse files Browse the repository at this point in the history
feat(no-ref): update v17, control flow v17
  • Loading branch information
NepipenkoIgor authored Nov 28, 2023
2 parents 763cbf3 + acaa146 commit 486785d
Show file tree
Hide file tree
Showing 12 changed files with 3,962 additions and 2,849 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist/angular-loader
publish_dir: ./dist/angular-loader/browser
12 changes: 0 additions & 12 deletions .npmignore

This file was deleted.

9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 17.0.0(2023-11-28)

### Feature

- update ng 17.x

<a name="17.0.0"></a>


# 16.0.1(2023-10-03)

### Feature
Expand Down
44 changes: 26 additions & 18 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,66 +21,74 @@
},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser-esbuild",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/angular-loader",
"browser": "src/main.ts",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"polyfills": [
"zone.js"
],
"tsConfig": "src/tsconfig.app.json",
"assets": ["src/favicon.ico", "src/assets"],
"styles": [
"node_modules/highlight.js/styles/github.css",
"src/styles.scss"
],
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
"optimization": true,
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
"maximumWarning": "2kb",
"maximumError": "10kb"
}
],
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true
]
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
}
},
"defaultConfiguration": ""
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "angular-loader:build"
"buildTarget": "angular-loader:build"
},
"configurations": {
"production": {
"browserTarget": "angular-loader:build:production"
"buildTarget": "angular-loader:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "angular-loader:build"
"buildTarget": "angular-loader:build"
}
},
"test": {
Expand Down
Loading

0 comments on commit 486785d

Please sign in to comment.