Skip to content

Commit

Permalink
fix(package.json): strict version
Browse files Browse the repository at this point in the history
  • Loading branch information
rbalet committed Nov 4, 2024
1 parent 44a8c95 commit 0be4dba
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 60 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
node-version: 20
cache: 'npm'
- run: npm ci
- run: npm i
# - name: lint
# run: npm run lint
# - run: npm run build
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
with:
node-version: 20
cache: 'npm'
- run: npm ci
- run: npm i
- run: npm run build
- name: release
run: cd dist/ngx-href && npx semantic-release --branches main
Expand Down
58 changes: 29 additions & 29 deletions package-lock.json

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

58 changes: 29 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,37 +32,37 @@
"prepare": "husky"
},
"dependencies": {
"@angular/animations": "^18.2.10",
"@angular/common": "^18.2.10",
"@angular/compiler": "^18.2.10",
"@angular/core": "^18.2.10",
"@angular/forms": "^18.2.10",
"@angular/platform-browser": "^18.2.10",
"@angular/platform-browser-dynamic": "^18.2.10",
"@angular/router": "^18.2.10",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"zone.js": "^0.14.10"
"@angular/animations": "18.2.10",
"@angular/common": "18.2.10",
"@angular/compiler": "18.2.10",
"@angular/core": "18.2.10",
"@angular/forms": "18.2.10",
"@angular/platform-browser": "18.2.10",
"@angular/platform-browser-dynamic": "18.2.10",
"@angular/router": "18.2.10",
"rxjs": "7.8.1",
"tslib": "2.8.1",
"zone.js": "0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.11",
"@angular/cli": "^18.2.11",
"@angular/compiler-cli": "^18.2.10",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@semantic-release/apm-config": "^9.0.1",
"@types/jasmine": "~5.1.4",
"husky": "^9.1.6",
"jasmine-core": "~5.4.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "^18.2.1",
"semantic-release": "^24.2.0",
"typescript": "~5.5.4"
"@angular-devkit/build-angular": "18.2.11",
"@angular/cli": "18.2.11",
"@angular/compiler-cli": "18.2.10",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@semantic-release/apm-config": "9.0.1",
"@types/jasmine": "5.1.4",
"husky": "9.1.6",
"jasmine-core": "5.4.0",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"ng-packagr": "18.2.1",
"semantic-release": "24.2.0",
"typescript": "5.5.4"
},
"release": {
"extends": "@semantic-release/apm-config"
Expand Down

0 comments on commit 0be4dba

Please sign in to comment.