Skip to content

Commit

Permalink
Fix build spotter
Browse files Browse the repository at this point in the history
  • Loading branch information
ziulev committed Dec 14, 2021
1 parent b6783c5 commit 7734844
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 13 deletions.
6 changes: 0 additions & 6 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,6 @@
"cli": {
"defaultCollection": "@nrwl/workspace"
},
"implicitDependencies": {
"package.json": {
"dependencies": "*",
"devDependencies": "*"
}
},
"tasksRunnerOptions": {
"default": {
"runner": "@nrwl/workspace/tasks-runners/default",
Expand Down
5 changes: 3 additions & 2 deletions packages/core/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
"projectType": "library",
"targets": {
"build": {
"executor": "@nrwl/node:package",
"executor": "@nrwl/node:build",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/core",
"tsConfig": "packages/core/tsconfig.lib.json",
"packageJson": "packages/core/package.json",
"main": "packages/core/index.ts",
"assets": ["packages/core/*.md"]
"assets": [],
"generatePackageJson": false
}
},
"lint": {
Expand Down
2 changes: 2 additions & 0 deletions packages/plugin/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from './src/plugin';
export * from './src/helpers';
7 changes: 4 additions & 3 deletions packages/plugin/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
"projectType": "library",
"targets": {
"build": {
"executor": "@nrwl/node:package",
"executor": "@nrwl/node:build",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/plugin",
"tsConfig": "packages/plugin/tsconfig.lib.json",
"packageJson": "packages/plugin/package.json",
"main": "packages/plugin/src/index.ts",
"assets": ["packages/plugin/*.md"]
"main": "packages/plugin/index.ts",
"assets": [],
"generatePackageJson": false
}
},
"lint": {
Expand Down
2 changes: 0 additions & 2 deletions packages/plugin/src/index.ts

This file was deleted.

0 comments on commit 7734844

Please sign in to comment.