Skip to content

Commit

Permalink
fix: really release
Browse files Browse the repository at this point in the history
  • Loading branch information
Bielik20 committed Mar 10, 2021
1 parent c193a85 commit c76056f
Showing 1 changed file with 16 additions and 28 deletions.
44 changes: 16 additions & 28 deletions workspace.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,20 @@
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"packages/nx-serverless/**/*.ts"
]
"lintFilePatterns": ["packages/nx-serverless/**/*.ts"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": [
"coverage/packages/nx-serverless"
],
"outputs": ["coverage/packages/nx-serverless"],
"options": {
"jestConfig": "packages/nx-serverless/jest.config.js",
"passWithNoTests": true
}
},
"build": {
"executor": "@nrwl/node:package",
"outputs": [
"{options.outputPath}"
],
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/nx-serverless",
"tsConfig": "packages/nx-serverless/tsconfig.lib.json",
Expand Down Expand Up @@ -86,26 +80,20 @@
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"packages/nx-core/**/*.ts"
]
"lintFilePatterns": ["packages/nx-core/**/*.ts"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": [
"coverage/packages/nx-core"
],
"outputs": ["coverage/packages/nx-core"],
"options": {
"jestConfig": "packages/nx-core/jest.config.js",
"passWithNoTests": true
}
},
"build": {
"executor": "@nrwl/node:package",
"outputs": [
"{options.outputPath}"
],
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/nx-core",
"tsConfig": "packages/nx-core/tsconfig.lib.json",
Expand Down Expand Up @@ -163,26 +151,20 @@
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"packages/nx-jest-playwright/**/*.ts"
]
"lintFilePatterns": ["packages/nx-jest-playwright/**/*.ts"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": [
"coverage/packages/nx-jest-playwright"
],
"outputs": ["coverage/packages/nx-jest-playwright"],
"options": {
"jestConfig": "packages/nx-jest-playwright/jest.config.js",
"passWithNoTests": true
}
},
"build": {
"executor": "@nrwl/node:package",
"outputs": [
"{options.outputPath}"
],
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/nx-jest-playwright",
"tsConfig": "packages/nx-jest-playwright/tsconfig.lib.json",
Expand All @@ -207,6 +189,12 @@
}
]
}
},
"version": {
"executor": "./tools/src/builders:npm-version"
},
"publish": {
"executor": "./tools/src/builders:npm-publish"
}
}
},
Expand All @@ -230,4 +218,4 @@
"cli": {
"defaultCollection": "@nrwl/workspace"
}
}
}

0 comments on commit c76056f

Please sign in to comment.