@mgwilt/nx-uv 0.1.0 → 0.1.2

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 -6
  2. package/package.json +10 -10
package/README.md CHANGED
@@ -22,9 +22,3 @@ pnpm nx g @mgwilt/nx-uv:python-package shared
22
22
  pnpm nx run shared:sync
23
23
  pnpm nx run shared:test
24
24
  ```
25
-
26
- ## Releasing
27
-
28
- - Releases are done with `.github/workflows/release.yml` using npm Trusted Publishing (OIDC).
29
- - One-time npm setup is required: add this repository/workflow as a trusted publisher for `@mgwilt/nx-uv` in npm settings.
30
- - `NPM_ACCESS_TOKEN` is not required.
package/package.json CHANGED
@@ -1,20 +1,12 @@
1
1
  {
2
2
  "name": "@mgwilt/nx-uv",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Nx plugin for uv workflows in Nx monorepos",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",
7
7
  "main": "./src/index.js",
8
8
  "types": "./src/index.d.ts",
9
9
  "private": false,
10
- "scripts": {
11
- "build": "nx run nx-uv:build",
12
- "lint": "nx run nx-uv:lint",
13
- "test": "nx run nx-uv:test",
14
- "release:version": "nx release version",
15
- "release:publish": "nx release publish",
16
- "commitlint": "commitlint --from=HEAD~1 --to=HEAD"
17
- },
18
10
  "repository": {
19
11
  "type": "git",
20
12
  "url": "https://github.com/mgwilt/nx-uv.git"
@@ -54,5 +46,13 @@
54
46
  "vite": "^7.3.1"
55
47
  },
56
48
  "executors": "./executors.json",
57
- "generators": "./generators.json"
49
+ "generators": "./generators.json",
50
+ "scripts": {
51
+ "build": "nx run nx-uv:build",
52
+ "lint": "nx run nx-uv:lint",
53
+ "test": "nx run nx-uv:test",
54
+ "release:version": "nx release version",
55
+ "release:publish": "nx release publish",
56
+ "commitlint": "commitlint --from=HEAD~1 --to=HEAD"
57
+ }
58
58
  }