Skip to content

Commit

Permalink
chore(deps): bump angular from v16.0.6 to v17.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
k3nsei committed Feb 2, 2024
1 parent d12ee53 commit 47809d0
Show file tree
Hide file tree
Showing 22 changed files with 6,074 additions and 19,361 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,19 +50,19 @@ jobs:
npm run test:example
- name: Upload library build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: artifacts-ng-in-viewport
path: dist/ng-in-viewport

- name: Upload demo application build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: artifacts-demo
path: dist/demo

- name: Upload example application build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: artifacts-example
path: dist/example
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
uses: ./.github/actions/install-npm-deps

- name: Download build artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: artifacts-${{ matrix.project }}
path: dist/${{ matrix.project }}
Expand All @@ -103,14 +103,14 @@ jobs:
headless: true

- name: Upload failed screenshots
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: failed-e2e-${{ matrix.project }}-screenshots
path: projects/${{ matrix.project }}-e2e/artifacts/screenshots

- name: Upload failed videos
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: failed-e2e-${{ matrix.project }}-videos
Expand Down
41 changes: 0 additions & 41 deletions .github/workflows/qodana-scan.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- name: Prepare release PR or move on with release when PR was accepted
id: release
uses: google-github-actions/release-please-action@v3
uses: google-github-actions/release-please-action@v4
with:
release-type: node
package-name: ng-in-viewport
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,4 @@ Thumbs.db
!/.github/actions/install-npm-deps/action.yml
!/.github/workflows/main.yml
!/.github/workflows/pr.yml
!/.github/workflows/qodana-scan.yml
!/.github/workflows/release-please.yml
1 change: 0 additions & 1 deletion .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

[ -n "$CI" ] && exit 0

Expand Down
1 change: 0 additions & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

[ -n "$CI" ] && exit 0

Expand Down
43 changes: 15 additions & 28 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,16 @@
},
"demo": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "projects/demo",
"sourceRoot": "projects/demo/src",
"prefix": "invp",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser-esbuild",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/demo",
"index": "projects/demo/src/index.html",
"main": "projects/demo/src/main.ts",
"browser": "projects/demo/src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "projects/demo/tsconfig.app.json",
"inlineStyleLanguage": "scss",
Expand Down Expand Up @@ -79,12 +74,9 @@
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
"sourceMap": true
}
},
"defaultConfiguration": "production"
Expand All @@ -93,18 +85,18 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "demo:build:production"
"buildTarget": "demo:build:production"
},
"development": {
"browserTarget": "demo:build:development"
"buildTarget": "demo:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "demo:build"
"buildTarget": "demo:build"
}
},
"lint": {
Expand All @@ -120,21 +112,16 @@
},
"example": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "projects/example",
"sourceRoot": "projects/example/src",
"prefix": "invp-ex",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser-esbuild",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/example",
"index": "projects/example/src/index.html",
"main": "projects/example/src/main.ts",
"browser": "projects/example/src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "projects/example/tsconfig.app.json",
"inlineStyleLanguage": "scss",
Expand Down Expand Up @@ -165,12 +152,9 @@
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
"sourceMap": true
}
},
"defaultConfiguration": "production"
Expand All @@ -179,10 +163,10 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "example:build:production"
"buildTarget": "example:build:production"
},
"development": {
"browserTarget": "example:build:development"
"buildTarget": "example:build:development"
}
},
"defaultConfiguration": "development",
Expand All @@ -193,7 +177,7 @@
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "example:build"
"buildTarget": "example:build"
}
},
"lint": {
Expand All @@ -213,6 +197,9 @@
"schematicCollections": ["@ngneat/spectator", "@angular-eslint/schematics"]
},
"schematics": {
"@schematics/angular:component": {
"style": "scss"
},
"@ngneat/spectator:spectator-component": {
"style": "scss"
}
Expand Down
Loading

0 comments on commit 47809d0

Please sign in to comment.