-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: tidy-up scripts * chore: update package-lock.json
- Loading branch information
Showing
9 changed files
with
62 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
npx validate-branch-name | ||
npm run scripts:check-commit-mail | ||
node scripts/check-commit-mail.js | ||
npx --no -- lint-staged --config ./.lintstagedrc.js | ||
npm run lint:jscpd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"name": "scripts", | ||
"version": "0.0.0", | ||
"type": "module", | ||
"description": "contains scripts for monorepo", | ||
"scripts": { | ||
"build": "npm-run-all build:foundations build:components", | ||
"build-outputs": "npm-run-all -p build-outputs:*", | ||
"build-outputs:components": "npm run copy-output --workspace=@db-ui/components", | ||
"build-outputs:foundations": "npm run copy-build --workspace=@db-ui/foundations", | ||
"build-outputs:ngx-components": "npm run build --workspace=@db-ui/ngx-components", | ||
"build-outputs:react-components": "npm run build --workspace=@db-ui/react-components", | ||
"build-outputs:v-components": "npm run build --workspace=@db-ui/v-components", | ||
"build-outputs:web-components": "npm run build --workspace=@db-ui/web-components", | ||
"build-showcases": "npm-run-all -p build-showcases:*", | ||
"build-showcases:angular": "npm run build --workspace=angular-showcase", | ||
"build-showcases:patternhub": "npm run build --workspace=patternhub", | ||
"build-showcases:react": "npm run build --workspace=react-showcase", | ||
"build-showcases:vanilla": "npm run build --workspace=vanilla-showcase", | ||
"build-showcases:vue": "npm run build --workspace=vue-showcase", | ||
"build:components": "npm run build --workspace=@db-ui/components", | ||
"build:foundations": "npm run build --workspace=@db-ui/foundations", | ||
"dev": "node dev.js", | ||
"dev:angular-components": "npm run dev:angular --workspace=@db-ui/components", | ||
"dev:plain-html": "npm run dev:html --workspace=@db-ui/components", | ||
"dev:react-components": "npm run dev:react --workspace=@db-ui/components", | ||
"dev:sass": "npm run dev:scss --workspace=@db-ui/components", | ||
"dev:vue-components": "npm run dev:vue --workspace=@db-ui/components", | ||
"generate:icon-fonts": "npm run generate:icon-fonts --workspace=@db-ui/foundations", | ||
"generate:icon-types": "npm run generate:icon-types --workspace=@db-ui/components", | ||
"rm-builds:components-build": "rimraf ../packages/components/build", | ||
"rm-builds:foundations-build": "rimraf ../packages/foundations/build", | ||
"rm-builds:outputs": "rimraf -g ../output/**/src", | ||
"rm-builds:patternhub-pages": "rimraf -g ../showcases/patternhub/pages/components/*/*", | ||
"rm-builds:patternhub-src-ts": "rimraf -g ../showcases/patternhub/components/src/**/*.ts", | ||
"rm-builds:patternhub-src-tsx": "rimraf -g ../showcases/patternhub/components/src/**/*.tsx", | ||
"rm:builds": "npm-run-all -p rm-builds:*", | ||
"start-showcase:angular": "npm run dev --workspace=angular-showcase", | ||
"start-showcase:patternhub": "npm run dev --workspace=patternhub", | ||
"start-showcase:react": "npm run dev --workspace=react-showcase", | ||
"start-showcase:vanilla": "npm run dev --workspace=vanilla-showcase", | ||
"start-showcase:vue": "npm run dev --workspace=vue-showcase", | ||
"start:foundations": "npm run start --workspace=@db-ui/foundations", | ||
"update:icon-fonts": "npm-run-all generate:icon-fonts generate:icon-types" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"name": "db-patternhub", | ||
"name": "patternhub", | ||
"version": "0.1.0", | ||
"type": "module", | ||
"private": true, | ||
|