@neon-rs/cli 0.0.180 → 0.0.181
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/index.js +1 -2
- package/package.json +8 -8
package/index.js
CHANGED
|
@@ -46729,7 +46729,7 @@ class Tarball {
|
|
|
46729
46729
|
this.log(`npm pack failed with exit code ${result.exitCode}`);
|
|
46730
46730
|
process.exit(result.exitCode);
|
|
46731
46731
|
}
|
|
46732
|
-
//
|
|
46732
|
+
// NOTE: This is a workaround for https://github.com/npm/cli/issues/3405
|
|
46733
46733
|
const tarball = JSON.parse(result.stdout)[0].filename.replace('@', '').replace('/', '-');
|
|
46734
46734
|
this.log(`tarball filename: ${tarball}`);
|
|
46735
46735
|
const dest = external_node_path_namespaceObject.join(this._outDir, tarball);
|
|
@@ -47154,7 +47154,6 @@ function summaries() {
|
|
|
47154
47154
|
{ name: CommandName.Help, summary: Help.summary() },
|
|
47155
47155
|
{ name: CommandName.Dist, summary: Dist.summary() },
|
|
47156
47156
|
{ name: CommandName.Bump, summary: Bump.summary() },
|
|
47157
|
-
{ name: CommandName.Tarball, summary: Tarball.summary() },
|
|
47158
47157
|
{ name: CommandName.AddPlatform, summary: AddPlatform.summary() },
|
|
47159
47158
|
{ name: CommandName.UpdatePlatforms, summary: UpdatePlatforms.summary() },
|
|
47160
47159
|
{ name: CommandName.RustTarget, summary: RustTarget.summary() },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neon-rs/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.181",
|
|
4
4
|
"description": "Command-line build tool for Neon modules.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./index.js",
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
},
|
|
28
28
|
"homepage": "https://github.com/dherman/neon-rs#readme",
|
|
29
29
|
"optionalDependencies": {
|
|
30
|
-
"@cargo-messages/android-arm-eabi": "0.0.
|
|
31
|
-
"@cargo-messages/darwin-arm64": "0.0.
|
|
32
|
-
"@cargo-messages/darwin-x64": "0.0.
|
|
33
|
-
"@cargo-messages/linux-arm-gnueabihf": "0.0.
|
|
34
|
-
"@cargo-messages/linux-x64-gnu": "0.0.
|
|
35
|
-
"@cargo-messages/win32-arm64-msvc": "0.0.
|
|
36
|
-
"@cargo-messages/win32-x64-msvc": "0.0.
|
|
30
|
+
"@cargo-messages/android-arm-eabi": "0.0.181",
|
|
31
|
+
"@cargo-messages/darwin-arm64": "0.0.181",
|
|
32
|
+
"@cargo-messages/darwin-x64": "0.0.181",
|
|
33
|
+
"@cargo-messages/linux-arm-gnueabihf": "0.0.181",
|
|
34
|
+
"@cargo-messages/linux-x64-gnu": "0.0.181",
|
|
35
|
+
"@cargo-messages/win32-arm64-msvc": "0.0.181",
|
|
36
|
+
"@cargo-messages/win32-x64-msvc": "0.0.181"
|
|
37
37
|
}
|
|
38
38
|
}
|