diff --git a/packages/angular/package.json b/packages/angular/package.json index 563032357412..ccc341c8ce87 100644 --- a/packages/angular/package.json +++ b/packages/angular/package.json @@ -44,7 +44,7 @@ "build:watch": "run-p build:watch:es5 build:watch:esm", "build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput", "build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", - "clean": "rimraf dist coverage build esm", + "clean": "rimraf dist esm build coverage", "link:yarn": "yarn link", "lint": "run-s lint:prettier lint:eslint", "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"", diff --git a/packages/browser/package.json b/packages/browser/package.json index f94616efe761..8a219162913f 100644 --- a/packages/browser/package.json +++ b/packages/browser/package.json @@ -64,7 +64,7 @@ "build:esm": "tsc -p tsconfig.esm.json", "build:esm:watch": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", "build:watch": "run-p build:dist:watch build:esm:watch build:bundle:watch", - "clean": "rimraf dist coverage .rpt2_cache build esm", + "clean": "rimraf dist esm build coverage .rpt2_cache", "link:yarn": "yarn link", "lint": "run-s lint:prettier lint:eslint", "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"", diff --git a/packages/core/package.json b/packages/core/package.json index 8f9e7a7739a5..661218a78c27 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -37,7 +37,7 @@ "build:watch": "run-p build:watch:es5 build:watch:esm", "build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput", "build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", - "clean": "rimraf dist coverage", + "clean": "rimraf dist esm coverage", "link:yarn": "yarn link", "lint": "run-s lint:prettier lint:eslint", "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"", diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 32782ff1b1a6..afae04b059f4 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -49,7 +49,7 @@ "build:watch": "run-p build:watch:es5 build:watch:esm", "build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput", "build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", - "clean": "rimraf dist coverage build esm", + "clean": "rimraf dist esm build coverage", "link:yarn": "yarn link", "lint": "run-s lint:prettier lint:eslint", "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"", diff --git a/packages/hub/package.json b/packages/hub/package.json index 97bde48cebb9..c743b3c734c8 100644 --- a/packages/hub/package.json +++ b/packages/hub/package.json @@ -35,7 +35,7 @@ "build:watch": "run-p build:watch:es5 build:watch:esm", "build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput", "build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", - "clean": "rimraf dist coverage", + "clean": "rimraf dist esm coverage", "link:yarn": "yarn link", "lint": "run-s lint:prettier lint:eslint", "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"", diff --git a/packages/integrations/package.json b/packages/integrations/package.json index 49754b867267..69ec3a38ba35 100644 --- a/packages/integrations/package.json +++ b/packages/integrations/package.json @@ -43,7 +43,7 @@ "build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput", "build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", "build:bundle": "rollup --config", - "clean": "rimraf dist coverage esm build .rpt2_cache", + "clean": "rimraf dist esm build coverage .rpt2_cache", "link:yarn": "yarn link", "lint": "run-s lint:prettier lint:eslint", "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"", diff --git a/packages/minimal/package.json b/packages/minimal/package.json index 7b2ff77ff564..2a63c22e479e 100644 --- a/packages/minimal/package.json +++ b/packages/minimal/package.json @@ -35,7 +35,7 @@ "build:watch": "run-p build:watch:es5 build:watch:esm", "build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput", "build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", - "clean": "rimraf dist coverage", + "clean": "rimraf dist esm coverage", "link:yarn": "yarn link", "lint": "run-s lint:prettier lint:eslint", "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"", diff --git a/packages/node/package.json b/packages/node/package.json index f76f4af2c27f..5f359ba5fa38 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -47,7 +47,7 @@ "build:watch": "run-p build:watch:es5 build:watch:esm", "build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput", "build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", - "clean": "rimraf dist coverage", + "clean": "rimraf dist esm coverage", "link:yarn": "yarn link", "lint": "run-s lint:prettier lint:eslint", "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"", diff --git a/packages/react/package.json b/packages/react/package.json index 29037edcd12a..3e1fc1ae93d2 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -62,7 +62,7 @@ "build:watch": "run-p build:watch:es5 build:watch:esm", "build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput", "build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", - "clean": "rimraf dist coverage build esm", + "clean": "rimraf dist esm build coverage", "link:yarn": "yarn link", "lint": "run-s lint:prettier lint:eslint", "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"", diff --git a/packages/serverless/package.json b/packages/serverless/package.json index 4ee01c6d517d..aada0b1f9638 100644 --- a/packages/serverless/package.json +++ b/packages/serverless/package.json @@ -53,7 +53,7 @@ "build:watch": "run-p build:watch:es5 build:watch:esm", "build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput", "build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", - "clean": "rimraf dist dist-awslambda-layer coverage build esm", + "clean": "rimraf dist esm build dist-awslambda-layer coverage", "link:yarn": "yarn link", "lint": "run-s lint:prettier lint:eslint", "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"", diff --git a/packages/tracing/package.json b/packages/tracing/package.json index 0b486bb443f3..e920775dd7e2 100644 --- a/packages/tracing/package.json +++ b/packages/tracing/package.json @@ -49,7 +49,7 @@ "build:watch": "run-p build:watch:es5 build:watch:esm", "build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput", "build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", - "clean": "rimraf dist coverage build esm", + "clean": "rimraf dist esm build coverage", "link:yarn": "yarn link", "lint": "run-s lint:prettier lint:eslint", "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"", diff --git a/packages/vue/package.json b/packages/vue/package.json index d41a50cc58e5..0a4ededc8715 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -53,7 +53,7 @@ "build:watch": "run-p build:watch:es5 build:watch:esm", "build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput", "build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", - "clean": "rimraf dist coverage build esm", + "clean": "rimraf dist esm build coverage", "link:yarn": "yarn link", "lint": "run-s lint:prettier lint:eslint", "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",