Skip to content

Commit

Permalink
chore: version 1.0.0-beta.5
Browse files Browse the repository at this point in the history
  • Loading branch information
NileshPatel17 committed Dec 16, 2020
1 parent c01835b commit 1c578fe
Show file tree
Hide file tree
Showing 4 changed files with 2,617 additions and 80 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
- uses: actions/checkout@v2

- name: install
run: npm install
run: yarn
- name: build
run: npm run build:lib
run: yarn run build:lib
- name: upload
if: success()
uses: actions/upload-artifact@v2
Expand All @@ -37,7 +37,7 @@ jobs:
node-version: 12
registry-url: https://registry.npmjs.org/
- name: publish
run: npm publish --access public
run: yarn publish --access public
continue-on-error: false
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
2 changes: 1 addition & 1 deletion ng-package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"dest": "lib",
"dest": "dist/lib",
"lib": {
"entryFile": "src/ng-multiselect-dropdown/src/public_api.ts"
}
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-multiselect-dropdown",
"version": "1.0.0-beta.4",
"version": "1.0.0-beta.5",
"private": false ,
"description": "Angular Multi-Select Dropdown",
"author": "Nilesh Patel",
Expand All @@ -20,13 +20,13 @@
"test:ci": "jest --runInBand",
"test:coverage": "jest --coverage",
"build:prod": "ng build --prod --base-href https://nileshpatel17.github.io/ng-multiselect-dropdown/",
"clear:lib": "rimraf lib",
"postcopyfiles": "copyfiles -u 1 ./lib/**/*.* node_modules/ng-multiselect-dropdown",
"copyfiles": "mkdir lib/themes && copyfiles src/themes/ng-multiselect-dropdown.theme.scss lib/themes",
"build:lib": "npm run clear:lib && ng-packagr -p ng-package.json",
"postbuild:lib": "npm run copyfiles",
"prepublish": "npm run build:prod",
"publish": "ngh --no-silent false --name=\"nileshpatel17\" --email=\"[email protected]\"",
"clear:lib": "rimraf dist/lib",
"postcopyfiles": "copyfiles -u 1 ./dist/lib/**/*.* node_modules/ng-multiselect-dropdown",
"copyfiles": "mkdir dist/lib/themes && copyfiles src/themes/ng-multiselect-dropdown.theme.scss dist/lib/themes",
"build:lib": "yarn run clear:lib && ng-packagr -p ng-package.json",
"postbuild:lib": "yarn run copyfiles",
"prepublish1": "yarn run build:prod",
"publish1": "ngh --no-silent false --name=\"nileshpatel17\" --email=\"[email protected]\"",
"deploy": "ng build --prod --bh /ng-multiselect-dropdown/ && angular-cli-ghpages --no-silent --repo=https://github.com/NileshPatel17/ng-multiselect-dropdown.git --name=\"Nilesh Patel\" [email protected]",
"deployOnly": "angular-cli-ghpages --no-silent --repo=https://github.com/NileshPatel17/ng-multiselect-dropdown.git --name=\"Nilesh Patel\" [email protected]",
"contributors:add": "all-contributors add",
Expand Down
Loading

0 comments on commit 1c578fe

Please sign in to comment.