@clipboard-health/nx-plugin 0.2.0 → 0.3.0

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.
Files changed (2) hide show
  1. package/README.md +0 -11
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -37,14 +37,3 @@ npx nx generate @nx/workspace:move --projectName [PROJECT_NAME] --destination [N
37
37
  ### Porting existing libraries
38
38
 
39
39
  Follow [Adding new libraries](#adding-new-libraries) to generate a new package and copy the code from the existing library into it.
40
-
41
- To keep the same project name while avoiding publishing version conflicts, create a `git tag` from the last commit on `main` with the project name and version:
42
-
43
- ```bash
44
- git checkout main
45
-
46
- # Where [VERSION] is the current version of the project
47
- git tag --annotate [PROJECT_NAME]@[VERSION] --message "Port from [OLD_LOCATION]"
48
-
49
- git push origin [PROJECT_NAME]@[VERSION]
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.2.0",
4
+ "version": "0.3.0",
5
5
  "bugs": "https://github.com/clipboardhealth/core-utils/issues",
6
6
  "dependencies": {
7
7
  "@nx/devkit": "19.5.6",