Skip to content

Commit f6fb7cb

Browse files
author
Dipak Sarkar
committed
updated duild script
1 parent cfbee15 commit f6fb7cb

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

.github/workflows/release-package.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
node-version: 16
1616
- run: yarn install
1717
- run: yarn test --coverage
18-
- run: yarn build
1918

2019
publish-gpr:
2120
needs: build
@@ -33,8 +32,9 @@ jobs:
3332
- name: Github ref check
3433
run: echo "Deploying to production server on branch $GITHUB_REF"
3534

36-
- name: Install npm dependencies
37-
run: yarn install
35+
- name: Install npm dependencies and Build package
36+
- run: yarn install
37+
- run: yarn build
3838

3939
- name: Publish tag to npm
4040
if: contains(github.ref, 'tags')
@@ -59,8 +59,9 @@ jobs:
5959
- name: Github ref check
6060
run: echo "Deploying to production server on branch $GITHUB_REF"
6161

62-
- name: Install npm dependencies
63-
run: yarn install
62+
- name: Install npm dependencies and Build package
63+
- run: yarn install
64+
- run: yarn build
6465

6566
- name: Publish tag to npm
6667
if: contains(github.ref, 'tags')

package.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,13 @@
6363
"directive",
6464
"currency",
6565
"money",
66-
"percentage"
66+
"vue",
67+
"directive component",
68+
"vue mask",
69+
"vue number input",
70+
"vue money input",
71+
"vue currecny input",
72+
"vue percentage input"
6773
],
6874
"license": "MIT",
6975
"repository": {
@@ -73,5 +79,6 @@
7379
"style": "dist/styles.css",
7480
"publishConfig": {
7581
"@coders-tm:registry": "https://npm.pkg.github.com"
76-
}
82+
},
83+
"dependencies": {}
7784
}

0 commit comments

Comments
 (0)