File tree 2 files changed +15
-3
lines changed
2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 9
9
"type" : " commonjs" ,
10
10
"main" : " ./src/index.js" ,
11
11
"typings" : " ./src/index.d.ts" ,
12
- "private" : true ,
12
+ "private" : false ,
13
13
"publishConfig" : {
14
14
"access" : " public" ,
15
15
"registry" : " https://registry.npmjs.org/"
Original file line number Diff line number Diff line change 7
7
"targets" : {
8
8
"build" : {
9
9
"executor" : " @nx/js:tsc" ,
10
- "outputs" : [" {options.outputPath}" ],
10
+ "outputs" : [
11
+ " {options.outputPath}"
12
+ ],
11
13
"options" : {
12
14
"outputPath" : " dist/packages/nx-dive" ,
13
15
"main" : " packages/nx-dive/src/index.ts" ,
36
38
}
37
39
]
38
40
}
39
- }
41
+ },
42
+ "publish" : {
43
+ "dependsOn" : [
44
+ " nx-dive:build"
45
+ ],
46
+ "executor" : " nx:run-commands" ,
47
+ "options" : {
48
+ "cwd" : " dist/packages/nx-dive" ,
49
+ "command" : " npm publish"
50
+ }
51
+ },
40
52
}
41
53
}
You can’t perform that action at this time.
0 commit comments