Skip to content

Commit

Permalink
chore(pluginsdk): exclude 'dist' from tsconfig and add npx to 'clean'…
Browse files Browse the repository at this point in the history
… command
  • Loading branch information
christopherthielen authored and mergify[bot] committed Apr 28, 2020
1 parent 0882500 commit 1db2e77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/pluginsdk/package.json
Expand Up @@ -6,7 +6,7 @@
"typings": "dist/index.d.ts",
"license": "Apache-2.0",
"scripts": {
"clean": "shx rm -rf dist",
"clean": "npx shx rm -rf dist",
"build": "rollup -c",
"watch": "rollup -c -w",
"postinstall": "./scripts/syncPeerDependencies.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/pluginsdk/tsconfig.json
@@ -1,6 +1,6 @@
{
"extends": "../tsconfig.base",
"exclude": ["scaffold"],
"exclude": ["scaffold", "dist"],
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
Expand Down

0 comments on commit 1db2e77

Please sign in to comment.