Skip to content

Commit cebdc38

Browse files
committed
chore(repo): add publish next target
1 parent 9d95f9f commit cebdc38

File tree

5 files changed

+30
-0
lines changed

5 files changed

+30
-0
lines changed

libs/cannon/project.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@
2727
},
2828
"lint": {
2929
"executor": "@nx/eslint:lint"
30+
},
31+
"publish-next": {
32+
"command": "npm publish --tag=next",
33+
"options": {
34+
"cwd": "{workspaceRoot}/dist/{projectRoot}"
35+
}
3036
}
3137
}
3238
}

libs/core/project.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@
2828
"lint": {
2929
"executor": "@nx/eslint:lint",
3030
"outputs": ["{options.outputFile}"]
31+
},
32+
"publish-next": {
33+
"command": "npm publish --tag=next",
34+
"options": {
35+
"cwd": "{workspaceRoot}/dist/{projectRoot}"
36+
}
3137
}
3238
}
3339
}

libs/postprocessing/project.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@
2727
},
2828
"lint": {
2929
"executor": "@nx/eslint:lint"
30+
},
31+
"publish-next": {
32+
"command": "npm publish --tag=next",
33+
"options": {
34+
"cwd": "{workspaceRoot}/dist/{projectRoot}"
35+
}
3036
}
3137
}
3238
}

libs/rapier/project.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@
2727
},
2828
"lint": {
2929
"executor": "@nx/eslint:lint"
30+
},
31+
"publish-next": {
32+
"command": "npm publish --tag=next",
33+
"options": {
34+
"cwd": "{workspaceRoot}/dist/{projectRoot}"
35+
}
3036
}
3137
}
3238
}

libs/soba/project.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,12 @@
6464
"buildTarget": "soba:build-storybook:ci"
6565
}
6666
}
67+
},
68+
"publish-next": {
69+
"command": "npm publish --tag=next",
70+
"options": {
71+
"cwd": "{workspaceRoot}/dist/{projectRoot}"
72+
}
6773
}
6874
}
6975
}

0 commit comments

Comments
 (0)