Skip to content

Commit 4a0b96e

Browse files
authored
v20.1.7
v20.1.7
2 parents d9a5035 + e72c679 commit 4a0b96e

10 files changed

Lines changed: 9 additions & 170 deletions

.github/workflows/on-merge-main-deploy-gpr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
node-version: '20.x'
2121
registry-url: 'https://npm.pkg.github.com'
2222
- run: npm ci
23-
- run: npm run build:lib
23+
- run: npm run build:package
2424
- run: cd dist/npm && npm publish --access=public
2525
env:
2626
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/on-merge-main-deploy-npmjs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
node-version: '20.x'
1717
registry-url: 'https://registry.npmjs.org'
1818
- run: npm ci
19-
- run: npm run build:lib
19+
- run: npm run build:package
2020
- run: cd dist/npm && npm publish --access=public
2121
env:
2222
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

.github/workflows/verify-pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
- name: Build 🔧
1717
run: |
1818
npm run build:prod
19-
npm run build:lib
19+
npm run build:package

.schematics/collection.json

Lines changed: 0 additions & 10 deletions
This file was deleted.

.schematics/ng-add/index.js

Lines changed: 0 additions & 42 deletions
This file was deleted.

.schematics/ng-add/index.ts

Lines changed: 0 additions & 55 deletions
This file was deleted.

.schematics/ng-add/schema.json

Lines changed: 0 additions & 23 deletions
This file was deleted.

package-lock.json

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

package.json

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@proangular/pro-form",
3-
"version": "20.0.1",
3+
"version": "20.1.7",
44
"description": "A predefined set of reactive and reusable form input components based on Angular Material.",
55
"author": "Pro Angular <webmaster@proangular.com>",
66
"homepage": "https://www.proangular.com",
@@ -9,10 +9,9 @@
99
"node": "^20.19.0 || ^22.12.0 || ^24.0.0"
1010
},
1111
"scripts": {
12-
"build": "ng build && npm run build:schematics",
13-
"build:lib": "npm run build:schematics && ng-packagr -p ng-package.json",
12+
"build": "ng build",
13+
"build:package": "ng-packagr -p ng-package.json",
1414
"build:prod": "ng build --configuration production",
15-
"build:schematics": "tsc -p tsconfig.schematics.json",
1615
"lint": "ng lint",
1716
"ng": "ng",
1817
"postinstall": "is-ci || husky install",
@@ -38,9 +37,6 @@
3837
"rxjs": ">=7.8 <8",
3938
"zone.js": ">=0.15 <0.16"
4039
},
41-
"dependencies": {
42-
"tslib": "^2.8.1"
43-
},
4440
"devDependencies": {
4541
"@angular/build": "^20.1.6",
4642
"@angular/cli": "^20.1.6",
@@ -106,13 +102,7 @@
106102
"url": "https://github.com/sponsors/proangular"
107103
},
108104
"publishConfig": {
109-
"access": "public",
110-
"directory": "dist/npm"
105+
"access": "public"
111106
},
112-
"schematics": "./.schematics/collection.json",
113-
"files": [
114-
"dist/",
115-
".schematics/"
116-
],
117107
"main": "src/main.ts"
118108
}

tsconfig.schematics.json

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)