@clipboard-health/nx-plugin 0.0.0 → 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ To keep the same project name while avoiding publishing version conflicts, creat
|
|
|
44
44
|
git checkout main
|
|
45
45
|
|
|
46
46
|
# Where [VERSION] is the current version of the project
|
|
47
|
-
git tag --annotate [PROJECT_NAME]
|
|
47
|
+
git tag --annotate [PROJECT_NAME]@[VERSION] --message "Port from [OLD_LOCATION]"
|
|
48
48
|
|
|
49
|
-
git push origin [PROJECT_NAME]
|
|
49
|
+
git push origin [PROJECT_NAME]@[VERSION]
|
|
50
50
|
```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clipboard-health/nx-plugin",
|
|
3
3
|
"description": "Clipboard Health's Nx plugin contains generators to manage applications within an Nx workspace.",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.1",
|
|
5
5
|
"bugs": "https://github.com/clipboardhealth/core-utils/issues",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@nx/devkit": "19.5.6",
|
|
@@ -2,15 +2,7 @@
|
|
|
2
2
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
3
3
|
"name": "<%= projectName %>",
|
|
4
4
|
"projectType": "library",
|
|
5
|
-
"sourceRoot": "packages/<%= projectName %>/src"
|
|
6
|
-
"release": {
|
|
7
|
-
"version": {
|
|
8
|
-
"generatorOptions": {
|
|
9
|
-
"packageRoot": "dist/{projectRoot}",
|
|
10
|
-
"currentVersionResolver": "git-tag"
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
},<% } %>
|
|
5
|
+
"sourceRoot": "packages/<%= projectName %>/src",
|
|
14
6
|
"tags": [],
|
|
15
7
|
"targets": {
|
|
16
8
|
"build": {
|
|
@@ -30,12 +22,7 @@
|
|
|
30
22
|
"maxWarnings": 0
|
|
31
23
|
},
|
|
32
24
|
"outputs": ["{options.outputFile}"]
|
|
33
|
-
}
|
|
34
|
-
"nx-release-publish": {
|
|
35
|
-
"options": {
|
|
36
|
-
"packageRoot": "dist/{projectRoot}"
|
|
37
|
-
}
|
|
38
|
-
},<% } %>
|
|
25
|
+
},
|
|
39
26
|
"test": {
|
|
40
27
|
"executor": "@nx/jest:jest",
|
|
41
28
|
"options": {
|