Skip to content

Commit

Permalink
chore: added .yarnrc
Browse files Browse the repository at this point in the history
  • Loading branch information
trickeyone committed Aug 29, 2021
1 parent 3b49106 commit 2a5db43
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions .yarnrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1


version-git-message "docs: release %s"
version-tag-prefix ""
message "chore(release): %s :tada:"
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,20 @@
"preinstall": "node misc/preinstall.js",
"commitmsg": "node misc/validate-commit.js",
"version": "yarn changelog && git add CHANGELOG.md",
"postversion": "yarn build:lib && yarn demo:build",
"build": "yarn build:lib && yarn demo:build",
"test": "yarn lint && yarn test:lib",
"postversion": "yarn lib:build && yarn demo:build",
"changelog": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file --release-count 1",
"build": "yarn lib:build && yarn demo:build",
"static": "ts-node --project misc/tsconfig.json misc/copy-static-files.ts",
"lint": "ng lint ng-toggle",
"test": "yarn lint && yarn lib:test",
"tdd": "ng test ng-toggle --source-map false",
"ci": "yarn test && yarn build",
"saucelabs": "ng test ng-toggle -c saucelabs",
"saucelabs:ie": "ng test ng-toggle -c saucelabs-ie",
"api-doc:tdd": "ts-node-dev --respawn --project misc/tsconfig.json node_modules/jasmine/bin/jasmine misc/api-doc.spec.ts",
"api-doc:test": "ts-node --project misc/tsconfig.json node_modules/jasmine/bin/jasmine misc/api-doc.spec.ts",
"build:lib": "ng build ng-toggle --prod && yarn static",
"test:lib": "ng test ng-toggle --code-coverage --source-map false --progress false --watch false",
"static": "ts-node --project misc/tsconfig.json misc/copy-static-files.ts",
"lint": "ng lint ng-toggle",
"lib:build": "ng build ng-toggle --prod && yarn static",
"lib:test": "ng test ng-toggle --code-coverage --source-map false --progress false --watch false",
"demo": "yarn demo:docs && yarn demo:stackblitzes && yarn demo:serve",
"demo:serve": "ng serve demo --host 0.0.0.0",
"demo:static": "gulp generate-demo-statics",
Expand All @@ -48,8 +50,6 @@
"demo:deploy": "yarn demo:build && yarn demo:deploy-push",
"demo:deploy-push": "gh-pages --dist demo/dist --branch gh-pages",
"demo:stackblitzes": "ts-node --project misc/tsconfig.json misc/generate-stackblitzes.ts",
"ci": "yarn test && yarn build",
"changelog": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file --release-count 1",
"clean": "yarn clean:dist & yarn clean:test & yarn clean:demo & yarn clean:demo:deploy && yarn clean:demo:plunks",
"clean:dist": "([[ ! -e dist/ ]] || rm -r dist/) && ([[ ! -e dist.tgz ]] || rm dist.tgz)",
"clean:test": "[[ ! -e coverage/ ]] || rm -r coverage/",
Expand Down

0 comments on commit 2a5db43

Please sign in to comment.