Skip to content

Commit

Permalink
fix: clean command
Browse files Browse the repository at this point in the history
  • Loading branch information
AliMD committed Dec 8, 2022
1 parent f56b2c7 commit 14bafbb
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"format": "run-s format:prettier format:eslint",
"format:eslint": "yarn lint:ts --fix",
"format:prettier": "prettier . --ignore-path .gitignore --write",
"clean": "yarn build:ts --clean && lerna run clean && rimraf \"{packages,demo}/**/*.{js,d.ts,map}\" \"{packages,demo}/**/.tsbuildinfo\" \"{packages,demo}/**/node_modules/\"",
"clean": "yarn build:ts --clean && lerna run clean",
"serve": "wds",
"watch": "run-p watch:* serve",
"watch:ts": "yarn build:ts --watch --preserveWatchOutput",
Expand Down
2 changes: 1 addition & 1 deletion pwa/flight-finder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"s": "run-s clean build serve",
"w": "yarn watch",
"start": "yarn serve",
"clean": "yarn build:ts --clean && rimraf dist",
"clean": "rimraf dist build .tsbuildinfo src/**/*.{js,d.ts,map}",
"build": "run-s build:ts build:es",
"build:ts": "tsc --build --pretty",
"build:es": "rimraf dist && rollup -c",
Expand Down
2 changes: 1 addition & 1 deletion services/comment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"start": "yarn serve",
"build": "run-s build:*",
"build:ts": "tsc --build",
"clean": "rimraf dist/",
"clean": "rimraf dist build .tsbuildinfo src/**/*.{js,d.ts,map}",
"serve": "node dist/index.js",
"serve:debug": "node --inspect dist/index.js",
"watch": "run-s clean build && run-p watch:ts watch:node",
Expand Down
2 changes: 1 addition & 1 deletion services/comment/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"composite": true,
"tsBuildInfoFile": ".tsbuildinfo",
"rootDir": "src",
"outDir": "dist"
"outDir": "src"
},

"include": ["src/**/*.ts"],
Expand Down
2 changes: 1 addition & 1 deletion services/flight-crawler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"start": "yarn serve",
"build": "run-s build:*",
"build:ts": "tsc --build",
"clean": "rimraf dist/",
"clean": "rimraf dist build .tsbuildinfo src/**/*.{js,d.ts,map}",
"serve": "node dist/index.js",
"serve:debug": "node --inspect dist/index.js",
"watch": "run-s clean build && run-p watch:ts watch:node",
Expand Down
2 changes: 1 addition & 1 deletion services/starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"start": "yarn serve",
"build": "run-s build:*",
"build:ts": "tsc --build",
"clean": "rimraf dist/",
"clean": "rimraf dist build .tsbuildinfo src/**/*.{js,d.ts,map}",
"serve": "node dist/index.js",
"serve:debug": "node --inspect dist/index.js",
"watch": "run-s clean build && run-p watch:ts watch:node",
Expand Down
2 changes: 1 addition & 1 deletion services/storage-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"start": "yarn serve",
"build": "run-s build:*",
"build:ts": "tsc --build",
"clean": "rimraf dist/",
"clean": "rimraf dist build .tsbuildinfo src/**/*.{js,d.ts,map}",
"serve": "node dist/index.js",
"serve:debug": "node --inspect dist/index.js",
"watch": "run-s clean build && run-p watch:ts watch:node",
Expand Down
2 changes: 1 addition & 1 deletion services/telegram-notifier/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"start": "yarn serve",
"build": "run-s build:*",
"build:ts": "tsc --build",
"clean": "rimraf dist/",
"clean": "rimraf dist build .tsbuildinfo src/**/*.{js,d.ts,map}",
"serve": "node dist/index.js",
"serve:debug": "node --inspect dist/index.js",
"watch": "run-s clean build && run-p watch:ts watch:node",
Expand Down
2 changes: 1 addition & 1 deletion uniquely/flight-finder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"start": "yarn serve",
"build": "run-s build:*",
"build:ts": "tsc --build",
"clean": "rimraf dist/",
"clean": "rimraf dist build .tsbuildinfo src/**/*.{js,d.ts,map}",
"serve": "node dist/index.js",
"serve:debug": "node --inspect dist/index.js",
"watch": "run-s clean build && run-p watch:ts watch:node",
Expand Down

0 comments on commit 14bafbb

Please sign in to comment.