Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/on-merge-main-deploy-gpr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: '20.x'
registry-url: 'https://npm.pkg.github.com'
- run: npm ci
- run: npm run build:lib
- run: npm run build:package
- run: cd dist/npm && npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/on-merge-main-deploy-npmjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run build:lib
- run: npm run build:package
- run: cd dist/npm && npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/verify-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
- name: Build 🔧
run: |
npm run build:prod
npm run build:lib
npm run build:package
10 changes: 0 additions & 10 deletions .schematics/collection.json

This file was deleted.

42 changes: 0 additions & 42 deletions .schematics/ng-add/index.js

This file was deleted.

55 changes: 0 additions & 55 deletions .schematics/ng-add/index.ts

This file was deleted.

23 changes: 0 additions & 23 deletions .schematics/ng-add/schema.json

This file was deleted.

7 changes: 2 additions & 5 deletions package-lock.json

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

18 changes: 4 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@proangular/pro-form",
"version": "20.0.1",
"version": "20.1.7",
"description": "A predefined set of reactive and reusable form input components based on Angular Material.",
"author": "Pro Angular <webmaster@proangular.com>",
"homepage": "https://www.proangular.com",
Expand All @@ -9,10 +9,9 @@
"node": "^20.19.0 || ^22.12.0 || ^24.0.0"
},
"scripts": {
"build": "ng build && npm run build:schematics",
"build:lib": "npm run build:schematics && ng-packagr -p ng-package.json",
"build": "ng build",
"build:package": "ng-packagr -p ng-package.json",
"build:prod": "ng build --configuration production",
"build:schematics": "tsc -p tsconfig.schematics.json",
"lint": "ng lint",
"ng": "ng",
"postinstall": "is-ci || husky install",
Expand All @@ -38,9 +37,6 @@
"rxjs": ">=7.8 <8",
"zone.js": ">=0.15 <0.16"
},
"dependencies": {
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "^20.1.6",
"@angular/cli": "^20.1.6",
Expand Down Expand Up @@ -106,13 +102,7 @@
"url": "https://github.com/sponsors/proangular"
},
"publishConfig": {
"access": "public",
"directory": "dist/npm"
"access": "public"
},
"schematics": "./.schematics/collection.json",
"files": [
"dist/",
".schematics/"
],
"main": "src/main.ts"
}
18 changes: 0 additions & 18 deletions tsconfig.schematics.json

This file was deleted.