Skip to content

Commit 0be4dba

Browse files
committed
fix(package.json): strict version
1 parent 44a8c95 commit 0be4dba

File tree

3 files changed

+60
-60
lines changed

3 files changed

+60
-60
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
node-version: 20
2020
cache: 'npm'
21-
- run: npm ci
21+
- run: npm i
2222
# - name: lint
2323
# run: npm run lint
2424
# - run: npm run build
@@ -47,7 +47,7 @@ jobs:
4747
with:
4848
node-version: 20
4949
cache: 'npm'
50-
- run: npm ci
50+
- run: npm i
5151
- run: npm run build
5252
- name: release
5353
run: cd dist/ngx-href && npx semantic-release --branches main

package-lock.json

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -32,37 +32,37 @@
3232
"prepare": "husky"
3333
},
3434
"dependencies": {
35-
"@angular/animations": "^18.2.10",
36-
"@angular/common": "^18.2.10",
37-
"@angular/compiler": "^18.2.10",
38-
"@angular/core": "^18.2.10",
39-
"@angular/forms": "^18.2.10",
40-
"@angular/platform-browser": "^18.2.10",
41-
"@angular/platform-browser-dynamic": "^18.2.10",
42-
"@angular/router": "^18.2.10",
43-
"rxjs": "~7.8.1",
44-
"tslib": "^2.8.1",
45-
"zone.js": "^0.14.10"
35+
"@angular/animations": "18.2.10",
36+
"@angular/common": "18.2.10",
37+
"@angular/compiler": "18.2.10",
38+
"@angular/core": "18.2.10",
39+
"@angular/forms": "18.2.10",
40+
"@angular/platform-browser": "18.2.10",
41+
"@angular/platform-browser-dynamic": "18.2.10",
42+
"@angular/router": "18.2.10",
43+
"rxjs": "7.8.1",
44+
"tslib": "2.8.1",
45+
"zone.js": "0.14.10"
4646
},
4747
"devDependencies": {
48-
"@angular-devkit/build-angular": "^18.2.11",
49-
"@angular/cli": "^18.2.11",
50-
"@angular/compiler-cli": "^18.2.10",
51-
"@commitlint/cli": "^19.5.0",
52-
"@commitlint/config-conventional": "^19.5.0",
53-
"@semantic-release/apm-config": "^9.0.1",
54-
"@types/jasmine": "~5.1.4",
55-
"husky": "^9.1.6",
56-
"jasmine-core": "~5.4.0",
57-
"karma": "~6.4.4",
58-
"karma-chrome-launcher": "~3.2.0",
59-
"karma-coverage": "~2.2.1",
60-
"karma-coverage-istanbul-reporter": "^3.0.3",
61-
"karma-jasmine": "~5.1.0",
62-
"karma-jasmine-html-reporter": "~2.1.0",
63-
"ng-packagr": "^18.2.1",
64-
"semantic-release": "^24.2.0",
65-
"typescript": "~5.5.4"
48+
"@angular-devkit/build-angular": "18.2.11",
49+
"@angular/cli": "18.2.11",
50+
"@angular/compiler-cli": "18.2.10",
51+
"@commitlint/cli": "19.5.0",
52+
"@commitlint/config-conventional": "19.5.0",
53+
"@semantic-release/apm-config": "9.0.1",
54+
"@types/jasmine": "5.1.4",
55+
"husky": "9.1.6",
56+
"jasmine-core": "5.4.0",
57+
"karma": "6.4.4",
58+
"karma-chrome-launcher": "3.2.0",
59+
"karma-coverage": "2.2.1",
60+
"karma-coverage-istanbul-reporter": "3.0.3",
61+
"karma-jasmine": "5.1.0",
62+
"karma-jasmine-html-reporter": "2.1.0",
63+
"ng-packagr": "18.2.1",
64+
"semantic-release": "24.2.0",
65+
"typescript": "5.5.4"
6666
},
6767
"release": {
6868
"extends": "@semantic-release/apm-config"

0 commit comments

Comments
 (0)