Skip to content

Commit

Permalink
Merge pull request #29 from mausworks/feat/publish-tidier-vscode
Browse files Browse the repository at this point in the history
Fix missing CI scripts
  • Loading branch information
mausworks authored Dec 19, 2021
2 parents ddf938f + d0a6f1d commit aa5d6bf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
14 changes: 8 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,18 @@
"lint:eslint": "yarn eslint --ignore-path .gitignore 'packages/**/*.ts'",
"lint:tidier": "yarn tidier 'packages/**/*.ts'",
"build:core": "cd packages/tidier-core && yarn build",
"build:test": "cd packages/tidier-test && yarn build",
"build:cli": "cd packages/tidier-cli && yarn build",
"build:vscode": "cd packages/tidier-vscode && yarn build",
"package:vscode": "cd packages/tidier-vscode && yarn package",
"test:core": "cd packages/tidier-core && yarn test",
"release:core": "cd packages/tidier-core && yarn release",
"build:test": "cd packages/tidier-test && yarn build",
"test:test": "cd packages/tidier-test && yarn test",
"build:cli": "cd packages/tidier-cli && yarn build",
"test:cli": "cd packages/tidier-cli && yarn test",
"release:core": "cd packages/tidier-core && yarn release",
"prepare:cli": "cd packages/tidier-cli && yarn prepare",
"release:cli": "cd packages/tidier-cli && yarn release"
"release:cli": "cd packages/tidier-cli && yarn release",
"build:vscode": "cd packages/tidier-vscode && yarn build",
"prepare:vscode": "cd packages/tidier-vscode && yarn prepare",
"package:vscode": "cd packages/tidier-vscode && yarn package",
"release:vscode": "cd packages/tidier-vscode && yarn release"
},
"workspaces": {
"packages": [
Expand Down
1 change: 0 additions & 1 deletion packages/tidier-vscode/.vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ out/**
src/**
.gitignore
.yarnrc
vsc-extension-quickstart.md
**/tsconfig.json
**/.eslintrc.json
**/*.map
Expand Down

0 comments on commit aa5d6bf

Please sign in to comment.