init-workspace-cervvaljs 0.2.4 → 0.2.5

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/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ ## 0.2.5 2024-06-20
2
+ - pnpm 9.5.0
1
3
  ## 0.2.4 2024-06-20
2
4
  - node 20.14-0
3
5
  - pnpm 9.3.0
package/bin/index.js CHANGED
@@ -145,7 +145,7 @@ function initWorkspace(options) {
145
145
  * parses command arguments and inits workspace in current working directory
146
146
  */
147
147
  function cli() {
148
- const options = { dry: false, update: false, pnpmVersion: "9.3.0" };
148
+ const options = { dry: false, update: false, pnpmVersion: "9.5.0" };
149
149
  const args = process.argv.slice(2);
150
150
  if (args.includes("--dry")) {
151
151
  console.info("* dry mode on");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "init-workspace-cervvaljs",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "Cervval.js Init Workspace Command Line Interface",
5
5
  "author": "Cervval",
6
6
  "license": "CC-BY-NC-ND-4.0",
@@ -31,5 +31,5 @@
31
31
  "eslintConfig": {
32
32
  "extends": "@cervval.js/eslint-config-cervvaljs"
33
33
  },
34
- "version": "0.2.4"
34
+ "version": "0.2.5"
35
35
  }