@nerd-bible/valio 0.1.0 → 0.1.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.
@@ -19,8 +19,9 @@ jobs:
19
19
  fetch-depth: 0
20
20
  - uses: actions/setup-node@v6
21
21
  with:
22
- node-version: lts/*
22
+ node-version: '24'
23
23
  registry-url: 'https://registry.npmjs.org'
24
24
  - run: npm install
25
25
  - run: npm test
26
26
  - run: node ./publish.ts "$GITHUB_SERVER_URL/$GITHUB_REPOSITORY"
27
+ - run: npm publish --verbose
package/package.json CHANGED
@@ -19,7 +19,7 @@
19
19
  "expect": "^30.2.0",
20
20
  "typescript": "^5.9.3"
21
21
  },
22
- "version": "0.1.0",
22
+ "version": "0.1.1",
23
23
  "repository": {
24
24
  "url": "https://github.com/nerd-bible/valio"
25
25
  }
package/publish.ts CHANGED
@@ -46,7 +46,4 @@ if (!dry) {
46
46
  pkg.version = version.substring(1);
47
47
  pkg.repository = { url: repoUrl };
48
48
  writeFileSync("package.json", JSON.stringify(pkg, null, 2));
49
-
50
- console.log("Publishing to NPM", version);
51
- execSync("npm publish --access public");
52
49
  }