@changepacks/cli 0.1.16 → 0.1.19

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/main.js +1 -1
  2. package/package.json +9 -8
package/main.js CHANGED
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env node
2
- const { main } = require("./dist/index.js")
2
+ const { main } = require("./index.js")
3
3
  ;(async()=>await main().catch(console.error))()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@changepacks/cli",
3
- "version": "0.1.16",
3
+ "version": "0.1.19",
4
4
  "description": "changepacks is a CLI tool that helps you efficiently manage versioning and changelogs in multi-language projects. It provides unified support for various package management systems including Node.js, Python, Rust, and more.",
5
5
  "main": "main.js",
6
6
  "license": "Apache License 2.0",
@@ -23,8 +23,9 @@
23
23
  "version control system"
24
24
  ],
25
25
  "files": [
26
- "dist",
27
- "main.js"
26
+ "main.js",
27
+ "index.d.ts",
28
+ "index.js"
28
29
  ],
29
30
  "napi": {
30
31
  "binaryName": "changepacks",
@@ -48,7 +49,7 @@
48
49
  "scripts": {
49
50
  "artifacts": "napi artifacts",
50
51
  "bench": "node --import @oxc-node/core/register benchmark/bench.ts",
51
- "build": "napi build --platform --release --output-dir dist",
52
+ "build": "napi build --platform --release",
52
53
  "build:debug": "napi build --platform",
53
54
  "format": "run-p format:prettier format:rs format:toml",
54
55
  "format:prettier": "prettier . -w",
@@ -97,9 +98,9 @@
97
98
  "arrowParens": "always"
98
99
  },
99
100
  "optionalDependencies": {
100
- "@changepacks/cli-win32-x64-msvc": "0.1.16",
101
- "@changepacks/cli-darwin-x64": "0.1.16",
102
- "@changepacks/cli-linux-x64-gnu": "0.1.16",
103
- "@changepacks/cli-darwin-arm64": "0.1.16"
101
+ "@changepacks/cli-win32-x64-msvc": "0.1.19",
102
+ "@changepacks/cli-darwin-x64": "0.1.19",
103
+ "@changepacks/cli-linux-x64-gnu": "0.1.19",
104
+ "@changepacks/cli-darwin-arm64": "0.1.19"
104
105
  }
105
106
  }