Skip to content

Commit

Permalink
remove tsbuildinfo when running yarn clean
Browse files Browse the repository at this point in the history
  • Loading branch information
snowypowers committed Apr 1, 2019
1 parent 44051cb commit 7c5e5e6
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 18 deletions.
7 changes: 4 additions & 3 deletions packages/neon-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"scripts": {
"build": "tsc -b",
"dist:prod": "tsc -m commonjs --outDir dist",
"clean": "rimraf ./lib ./dist",
"clean": "rimraf ./lib ./dist tsconfig.tsbuildinfo",
"prepublishOnly": "yarn clean && yarn build && yarn dist:prod",
"lint": "tslint src/**/*.ts __tests__/**/*.ts __integration__/**/*.ts",
"pretty": "prettier --write --loglevel=warn \"./{src,__{tests,integration}__}/**/*.ts\"",
Expand All @@ -33,7 +33,7 @@
"test:unit": "jest /packages/.*/__tests__/.*"
},
"dependencies": {
"@cityofzion/neon-core": "^4.3.2",
"@cityofzion/neon-core": "^4.4.0",
"axios": "0.18.0"
},
"peerDependencies": {
Expand All @@ -42,5 +42,6 @@
"files": [
"dist/",
"lib/"
]
],
"gitHead": "d21633d03deca1f4bc6c3a4f4e1d32a61aec2fe3"
}
5 changes: 3 additions & 2 deletions packages/neon-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -b",
"clean": "rimraf ./lib ./dist",
"clean": "rimraf ./lib ./dist tsconfig.tsbuildinfo",
"dist": "cross-env NODE_ENV=development webpack --mode development",
"dist:prod": "cross-env NODE_ENV=production webpack --mode production",
"prepublishOnly": "yarn clean && yarn build && yarn dist:prod",
Expand Down Expand Up @@ -64,5 +64,6 @@
"dist/",
"lib/",
"typings/"
]
],
"gitHead": "d21633d03deca1f4bc6c3a4f4e1d32a61aec2fe3"
}
5 changes: 3 additions & 2 deletions packages/neon-domain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"scripts": {
"build": "tsc -b",
"dist:prod": "tsc -m commonjs --outDir dist",
"clean": "rimraf ./lib ./dist",
"clean": "rimraf ./lib ./dist tsconfig.tsbuildinfo",
"prepublishOnly": "yarn clean && yarn build && yarn dist:prod",
"lint": "tslint src/**/*.ts __tests__/**/*.ts __integration__/**/*.ts",
"pretty": "prettier --write --loglevel=warn \"./{src,__{tests,integration}__}/**/*.ts\"",
Expand All @@ -46,5 +46,6 @@
"files": [
"dist/",
"lib/"
]
],
"gitHead": "d21633d03deca1f4bc6c3a4f4e1d32a61aec2fe3"
}
11 changes: 6 additions & 5 deletions packages/neon-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -b",
"clean": "rimraf ./lib ./dist",
"clean": "rimraf ./lib ./dist tsconfig.tsbuildinfo",
"dist": "cross-env NODE_ENV=development webpack --mode development",
"dist:prod": "cross-env NODE_ENV=production webpack --mode production",
"prepublishOnly": "yarn clean && yarn build && yarn dist:prod",
"lint": "tslint src/**/*.ts __tests__/**/*.ts __integration__/**/*.ts",
"pretty": "prettier --write --loglevel=warn \"./{src,__{tests,integration}__}/**/*.ts\""
},
"dependencies": {
"@cityofzion/neon-api": "^4.3.3",
"@cityofzion/neon-core": "^4.3.2",
"@cityofzion/neon-nep5": "^4.3.2"
"@cityofzion/neon-api": "^4.4.0",
"@cityofzion/neon-core": "^4.4.0",
"@cityofzion/neon-nep5": "^4.4.0"
},
"devDependencies": {
"clean-webpack-plugin": "2.0.1",
Expand All @@ -42,5 +42,6 @@
},
"files": [
"dist/"
]
],
"gitHead": "d21633d03deca1f4bc6c3a4f4e1d32a61aec2fe3"
}
7 changes: 4 additions & 3 deletions packages/neon-nep5/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"scripts": {
"build": "tsc -b",
"dist:prod": "tsc -m commonjs --outDir dist",
"clean": "rimraf ./lib ./dist",
"clean": "rimraf ./lib ./dist tsconfig.tsbuildinfo",
"prepublishOnly": "yarn clean && yarn build && yarn dist:prod",
"lint": "tslint src/**/*.ts __tests__/**/*.ts __integration__/**/*.ts",
"pretty": "prettier --write --loglevel=warn \"./{src,__{tests,integration}__}/**/*.ts\"",
Expand All @@ -33,13 +33,14 @@
"test:unit": "jest /packages/.*/__tests__/.*"
},
"dependencies": {
"@cityofzion/neon-core": "^4.3.2"
"@cityofzion/neon-core": "^4.4.0"
},
"peerDependencies": {
"@cityofzion/neon-core": "^4.0.0"
},
"files": [
"dist/",
"lib/"
]
],
"gitHead": "d21633d03deca1f4bc6c3a4f4e1d32a61aec2fe3"
}
7 changes: 4 additions & 3 deletions packages/neon-nep9/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"scripts": {
"build": "tsc -b",
"dist:prod": "tsc -m commonjs --outDir dist",
"clean": "rimraf ./lib ./dist",
"clean": "rimraf ./lib ./dist tsconfig.tsbuildinfo",
"prepublishOnly": "yarn clean && yarn build && yarn dist:prod",
"lint": "tslint src/**/*.ts __tests__/**/*.ts __integration__/**/*.ts",
"pretty": "prettier --write --loglevel=warn \"./{src,__{tests,integration}__}/**/*.ts\"",
Expand All @@ -32,13 +32,14 @@
"test:unit": "jest /packages/.*/__tests__/.*"
},
"dependencies": {
"@cityofzion/neon-core": "^4.3.2"
"@cityofzion/neon-core": "^4.4.0"
},
"peerDependencies": {
"@cityofzion/neon-core": "^4.0.0"
},
"files": [
"dist/",
"lib/"
]
],
"gitHead": "d21633d03deca1f4bc6c3a4f4e1d32a61aec2fe3"
}

0 comments on commit 7c5e5e6

Please sign in to comment.