@rubix0270/arboris 1.0.3 → 1.0.4
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/package.json +25 -25
- package/run.mjs +10 -10
package/package.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@rubix0270/arboris",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Alias de compatibilité vers arboris-cli.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"arboris": "run.mjs",
|
|
8
|
-
"arboris-cli": "run.mjs"
|
|
9
|
-
},
|
|
10
|
-
"dependencies": {
|
|
11
|
-
"arboris-cli": "^1.1.
|
|
12
|
-
},
|
|
13
|
-
"engines": {
|
|
14
|
-
"node": ">=20"
|
|
15
|
-
},
|
|
16
|
-
"publishConfig": {
|
|
17
|
-
"access": "public"
|
|
18
|
-
},
|
|
19
|
-
"repository": {
|
|
20
|
-
"type": "git",
|
|
21
|
-
"url": "git+https://github.com/ThePheniX974/arboris.git",
|
|
22
|
-
"directory": "packages/rubix-alias"
|
|
23
|
-
},
|
|
24
|
-
"license": "MIT"
|
|
25
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@rubix0270/arboris",
|
|
3
|
+
"version": "1.0.4",
|
|
4
|
+
"description": "Alias de compatibilité vers arboris-cli.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"arboris": "run.mjs",
|
|
8
|
+
"arboris-cli": "run.mjs"
|
|
9
|
+
},
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"arboris-cli": "^1.1.1"
|
|
12
|
+
},
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=20"
|
|
15
|
+
},
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/ThePheniX974/arboris.git",
|
|
22
|
+
"directory": "packages/rubix-alias"
|
|
23
|
+
},
|
|
24
|
+
"license": "MIT"
|
|
25
|
+
}
|
package/run.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
import { spawnSync } from 'node:child_process'
|
|
3
|
-
import { createRequire } from 'node:module'
|
|
4
|
-
import { dirname, join } from 'node:path'
|
|
5
|
-
|
|
6
|
-
const require = createRequire(import.meta.url)
|
|
7
|
-
const root = dirname(require.resolve('arboris-cli/package.json'))
|
|
8
|
-
const cli = join(root, 'dist', 'cli.mjs')
|
|
9
|
-
const child = spawnSync(process.execPath, [cli, ...process.argv.slice(2)], { stdio: 'inherit' })
|
|
10
|
-
process.exit(child.status ?? 1)
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { spawnSync } from 'node:child_process'
|
|
3
|
+
import { createRequire } from 'node:module'
|
|
4
|
+
import { dirname, join } from 'node:path'
|
|
5
|
+
|
|
6
|
+
const require = createRequire(import.meta.url)
|
|
7
|
+
const root = dirname(require.resolve('arboris-cli/package.json'))
|
|
8
|
+
const cli = join(root, 'dist', 'cli.mjs')
|
|
9
|
+
const child = spawnSync(process.execPath, [cli, ...process.argv.slice(2)], { stdio: 'inherit' })
|
|
10
|
+
process.exit(child.status ?? 1)
|