@shell-shock/plugin-completions 0.4.30 → 0.4.32
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/dist/components/bash-config-command.cjs +17 -17
- package/dist/components/bash-config-command.d.cts.map +1 -1
- package/dist/components/bash-config-command.mjs +5 -5
- package/dist/components/bash-script-command.cjs +14 -14
- package/dist/components/bash-script-command.d.cts.map +1 -1
- package/dist/components/bash-script-command.mjs +5 -5
- package/dist/components/bash-shared.cjs +8 -8
- package/dist/components/bash-shared.d.cts.map +1 -1
- package/dist/components/bash-shared.mjs +4 -4
- package/dist/components/fish-config-command.cjs +17 -17
- package/dist/components/fish-config-command.d.cts.map +1 -1
- package/dist/components/fish-config-command.mjs +5 -5
- package/dist/components/fish-script-command.cjs +13 -13
- package/dist/components/fish-script-command.d.cts.map +1 -1
- package/dist/components/fish-script-command.mjs +5 -5
- package/dist/components/fish-shared.cjs +8 -8
- package/dist/components/fish-shared.d.cts.map +1 -1
- package/dist/components/fish-shared.mjs +4 -4
- package/dist/components/powershell-config-command.cjs +15 -15
- package/dist/components/powershell-config-command.d.cts.map +1 -1
- package/dist/components/powershell-config-command.mjs +4 -4
- package/dist/components/powershell-script-command.cjs +14 -14
- package/dist/components/powershell-script-command.d.cts.map +1 -1
- package/dist/components/powershell-script-command.mjs +5 -5
- package/dist/components/powershell-shared.cjs +8 -8
- package/dist/components/powershell-shared.d.cts.map +1 -1
- package/dist/components/powershell-shared.mjs +4 -4
- package/dist/components/zsh-config-command.cjs +17 -17
- package/dist/components/zsh-config-command.d.cts.map +1 -1
- package/dist/components/zsh-config-command.mjs +5 -5
- package/dist/components/zsh-script-command.cjs +14 -14
- package/dist/components/zsh-script-command.d.cts.map +1 -1
- package/dist/components/zsh-script-command.mjs +5 -5
- package/dist/components/zsh-shared.cjs +8 -8
- package/dist/components/zsh-shared.d.cts.map +1 -1
- package/dist/components/zsh-shared.mjs +4 -4
- package/dist/generator-BDvpem35.cjs +63 -0
- package/dist/generator-DQoArSbb.mjs +59 -0
- package/dist/generator-DQoArSbb.mjs.map +1 -0
- package/dist/generator.cjs +5 -0
- package/dist/generator.d.cts +10 -0
- package/dist/generator.d.cts.map +1 -0
- package/dist/generator.d.mts +10 -0
- package/dist/generator.d.mts.map +1 -0
- package/dist/generator.mjs +3 -0
- package/dist/helpers/complete-command.cjs +0 -1
- package/dist/helpers/complete-command.d.cts.map +1 -1
- package/dist/helpers/completion-directive-constants.cjs +0 -1
- package/dist/helpers/completion-directive-constants.d.cts.map +1 -1
- package/dist/index.cjs +221 -238
- package/dist/index.d.cts +4 -3
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +4 -3
- package/dist/index.mjs +221 -239
- package/dist/shell-type-DETq6QwA.d.cts +6 -0
- package/dist/shell-type-DETq6QwA.d.cts.map +1 -0
- package/dist/shell-type-DETq6QwA.d.mts +6 -0
- package/dist/shell-type-DETq6QwA.d.mts.map +1 -0
- package/dist/types/index.cjs +1 -0
- package/dist/types/index.d.cts +1 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.mjs +1 -0
- package/dist/types/plugin.d.cts +1 -2
- package/dist/types/plugin.d.cts.map +1 -1
- package/dist/types/plugin.d.mts +1 -2
- package/dist/types/shell-type.cjs +0 -1
- package/dist/types/shell-type.d.cts +2 -6
- package/dist/types/shell-type.d.mts +2 -6
- package/package.json +28 -14
- package/dist/types/shell-type.d.cts.map +0 -1
- package/dist/types/shell-type.d.mts.map +0 -1
|
@@ -1,6 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
declare const SHELL_TYPES: readonly ShellType[];
|
|
4
|
-
//#endregion
|
|
5
|
-
export { SHELL_TYPES, ShellType };
|
|
6
|
-
//# sourceMappingURL=shell-type.d.mts.map
|
|
1
|
+
import { n as ShellType, t as SHELL_TYPES } from "../shell-type-DETq6QwA.mjs";
|
|
2
|
+
export { SHELL_TYPES, ShellType };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shell-shock/plugin-completions",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.32",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Shell Shock plugin to generate source code given a list design tokens.",
|
|
6
6
|
"repository": {
|
|
@@ -237,6 +237,20 @@
|
|
|
237
237
|
"default": "./dist/components/zsh-shared.mjs"
|
|
238
238
|
}
|
|
239
239
|
},
|
|
240
|
+
"./generator": {
|
|
241
|
+
"require": {
|
|
242
|
+
"types": "./dist/generator.d.cts",
|
|
243
|
+
"default": "./dist/generator.cjs"
|
|
244
|
+
},
|
|
245
|
+
"import": {
|
|
246
|
+
"types": "./dist/generator.d.mts",
|
|
247
|
+
"default": "./dist/generator.mjs"
|
|
248
|
+
},
|
|
249
|
+
"default": {
|
|
250
|
+
"types": "./dist/generator.d.mts",
|
|
251
|
+
"default": "./dist/generator.mjs"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
240
254
|
"./helpers": {
|
|
241
255
|
"require": {
|
|
242
256
|
"types": "./dist/helpers/index.d.cts",
|
|
@@ -325,7 +339,7 @@
|
|
|
325
339
|
},
|
|
326
340
|
"types": "./dist/index.d.cts",
|
|
327
341
|
"typings": "dist/index.d.mts",
|
|
328
|
-
"files": ["dist
|
|
342
|
+
"files": ["dist"],
|
|
329
343
|
"keywords": [
|
|
330
344
|
"shell-shock",
|
|
331
345
|
"shell-shock-plugin",
|
|
@@ -333,19 +347,19 @@
|
|
|
333
347
|
"storm-software"
|
|
334
348
|
],
|
|
335
349
|
"dependencies": {
|
|
336
|
-
"@alloy-js/core": "^0.
|
|
337
|
-
"@alloy-js/typescript": "^0.
|
|
338
|
-
"@
|
|
339
|
-
"@powerlines/plugin-alloy": "^0.26.
|
|
340
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
341
|
-
"@shell-shock/core": "0.17.
|
|
342
|
-
"@stryke/path": "^0.29.
|
|
343
|
-
"@stryke/string-format": "^0.17.
|
|
344
|
-
"powerlines": "^0.47.
|
|
350
|
+
"@alloy-js/core": "^0.24.1",
|
|
351
|
+
"@alloy-js/typescript": "^0.24.0",
|
|
352
|
+
"@power-plant/alloy-js": "^0.0.87",
|
|
353
|
+
"@powerlines/plugin-alloy": "^0.26.309",
|
|
354
|
+
"@powerlines/plugin-plugin": "^0.12.624",
|
|
355
|
+
"@shell-shock/core": "0.17.24",
|
|
356
|
+
"@stryke/path": "^0.29.35",
|
|
357
|
+
"@stryke/string-format": "^0.17.50",
|
|
358
|
+
"powerlines": "^0.47.211"
|
|
345
359
|
},
|
|
346
360
|
"devDependencies": {
|
|
347
|
-
"@powerlines/plugin-deepkit": "^0.11.
|
|
348
|
-
"@types/node": "^25.9.
|
|
361
|
+
"@powerlines/plugin-deepkit": "^0.11.554",
|
|
362
|
+
"@types/node": "^25.9.5"
|
|
349
363
|
},
|
|
350
364
|
"publishConfig": {
|
|
351
365
|
"access": "public",
|
|
@@ -362,5 +376,5 @@
|
|
|
362
376
|
"./package.json": "./package.json"
|
|
363
377
|
}
|
|
364
378
|
},
|
|
365
|
-
"gitHead": "
|
|
379
|
+
"gitHead": "06592cb0cccc2c7e9297af4c5138550e86fa4eec"
|
|
366
380
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"shell-type.d.cts","names":[],"sources":["../../src/types/shell-type.ts"],"mappings":";KAkBY,SAAA;AAAA,cAEC,WAAA,WAAsB,SAAS"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"shell-type.d.mts","names":[],"sources":["../../src/types/shell-type.ts"],"mappings":""}
|