@nexapp/code-map 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.
- package/bin.js +1 -0
- package/package.json +3 -2
package/bin.js
CHANGED
|
@@ -26,6 +26,7 @@ const PLATFORMS = {
|
|
|
26
26
|
'linux-arm64': '@nexapp/code-map-linux-arm64',
|
|
27
27
|
'linux-x64': '@nexapp/code-map-linux-x64',
|
|
28
28
|
'win32-x64': '@nexapp/code-map-win32-x64',
|
|
29
|
+
'win32-arm64': '@nexapp/code-map-win32-arm64',
|
|
29
30
|
};
|
|
30
31
|
|
|
31
32
|
const key = `${process.platform}-${process.arch}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexapp/code-map",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "TypeScript dependency analyzer and visualizer — analyze imports, find unused exports, and explore project graphs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"@nexapp/code-map-darwin-x64": "0.1.0",
|
|
29
29
|
"@nexapp/code-map-linux-x64": "0.1.0",
|
|
30
30
|
"@nexapp/code-map-linux-arm64": "0.1.0",
|
|
31
|
-
"@nexapp/code-map-win32-x64": "0.1.0"
|
|
31
|
+
"@nexapp/code-map-win32-x64": "0.1.0",
|
|
32
|
+
"@nexapp/code-map-win32-arm64": "0.1.0"
|
|
32
33
|
}
|
|
33
34
|
}
|