@powerlines/plugin-babel 0.12.351 → 0.12.352
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/README.md +1 -1
- package/dist/index.cjs +9 -3
- package/dist/index.mjs +9 -3
- package/dist/index.mjs.map +1 -1
- package/dist/types/plugin.d.cts +6 -2
- package/dist/types/plugin.d.cts.map +1 -1
- package/dist/types/plugin.d.mts +6 -2
- package/dist/types/plugin.d.mts.map +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ This package is part of the <b>🔌 Powerlines</b> monorepo. Powerlines is the "
|
|
|
27
27
|
|
|
28
28
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
29
29
|
|
|
30
|
-
[](https://stormsoftware.com/projects/powerlines) [](http://commitizen.github.io/cz-cli/)  
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
package/dist/index.cjs
CHANGED
|
@@ -44,13 +44,19 @@ const plugin = (options = {}) => {
|
|
|
44
44
|
id
|
|
45
45
|
};
|
|
46
46
|
}
|
|
47
|
-
const plugins = this.config.babel.plugins.map((plugin) => require_helpers_options.resolveBabelPlugin(this, code, id, plugin)).filter((
|
|
48
|
-
|
|
47
|
+
const plugins = this.config.babel.plugins.map((plugin) => require_helpers_options.resolveBabelPlugin(this, code, id, plugin)).filter(Boolean).reduce((ret, plugin) => {
|
|
48
|
+
if (plugin && !require_helpers_filters.isDuplicatePlugin(ret, plugin)) ret.push(plugin);
|
|
49
|
+
return ret;
|
|
50
|
+
}, []);
|
|
51
|
+
const presets = this.config.babel.presets.map((preset) => require_helpers_options.resolveBabelPlugin(this, code, id, preset)).filter(Boolean).reduce((ret, preset) => {
|
|
52
|
+
if (preset && !require_helpers_filters.isDuplicatePlugin(ret, preset)) ret.push(preset);
|
|
53
|
+
return ret;
|
|
54
|
+
}, []);
|
|
49
55
|
if (Array.isArray(plugins) && plugins.length === 0 && Array.isArray(presets) && presets.length === 0) return {
|
|
50
56
|
code,
|
|
51
57
|
id
|
|
52
58
|
};
|
|
53
|
-
if (/^(?:m|c)?tsx?$/.test((0, _stryke_path_file_path_fns.findFileExtensionSafe)(id, { fullExtension: true })) && !require_helpers_filters.isDuplicatePlugin(plugins, "@babel/plugin-syntax-typescript") && !require_helpers_filters.isDuplicatePlugin(presets, "@babel/preset-typescript")) plugins.unshift(["@babel/plugin-syntax-typescript", { isTSX: (0, _stryke_path_file_path_fns.findFileExtension)(id) === "tsx" }]);
|
|
59
|
+
if (!this.config.babel?.skipConfigResolution && /^(?:m|c)?tsx?$/.test((0, _stryke_path_file_path_fns.findFileExtensionSafe)(id, { fullExtension: true })) && !require_helpers_filters.isDuplicatePlugin(plugins, "@babel/plugin-syntax-typescript") && !require_helpers_filters.isDuplicatePlugin(presets, "@babel/preset-typescript")) plugins.unshift(["@babel/plugin-syntax-typescript", { isTSX: (0, _stryke_path_file_path_fns.findFileExtension)(id) === "tsx" }]);
|
|
54
60
|
this.trace(`Running babel transformations with ${plugins.length} plugins and ${presets.length} presets for file: ${id}`);
|
|
55
61
|
const result = await (0, _babel_core.transformAsync)(code, {
|
|
56
62
|
highlightCode: true,
|
package/dist/index.mjs
CHANGED
|
@@ -41,13 +41,19 @@ const plugin = (options = {}) => {
|
|
|
41
41
|
id
|
|
42
42
|
};
|
|
43
43
|
}
|
|
44
|
-
const plugins = this.config.babel.plugins.map((plugin) => resolveBabelPlugin(this, code, id, plugin)).filter((
|
|
45
|
-
|
|
44
|
+
const plugins = this.config.babel.plugins.map((plugin) => resolveBabelPlugin(this, code, id, plugin)).filter(Boolean).reduce((ret, plugin) => {
|
|
45
|
+
if (plugin && !isDuplicatePlugin(ret, plugin)) ret.push(plugin);
|
|
46
|
+
return ret;
|
|
47
|
+
}, []);
|
|
48
|
+
const presets = this.config.babel.presets.map((preset) => resolveBabelPlugin(this, code, id, preset)).filter(Boolean).reduce((ret, preset) => {
|
|
49
|
+
if (preset && !isDuplicatePlugin(ret, preset)) ret.push(preset);
|
|
50
|
+
return ret;
|
|
51
|
+
}, []);
|
|
46
52
|
if (Array.isArray(plugins) && plugins.length === 0 && Array.isArray(presets) && presets.length === 0) return {
|
|
47
53
|
code,
|
|
48
54
|
id
|
|
49
55
|
};
|
|
50
|
-
if (/^(?:m|c)?tsx?$/.test(findFileExtensionSafe(id, { fullExtension: true })) && !isDuplicatePlugin(plugins, "@babel/plugin-syntax-typescript") && !isDuplicatePlugin(presets, "@babel/preset-typescript")) plugins.unshift(["@babel/plugin-syntax-typescript", { isTSX: findFileExtension(id) === "tsx" }]);
|
|
56
|
+
if (!this.config.babel?.skipConfigResolution && /^(?:m|c)?tsx?$/.test(findFileExtensionSafe(id, { fullExtension: true })) && !isDuplicatePlugin(plugins, "@babel/plugin-syntax-typescript") && !isDuplicatePlugin(presets, "@babel/preset-typescript")) plugins.unshift(["@babel/plugin-syntax-typescript", { isTSX: findFileExtension(id) === "tsx" }]);
|
|
51
57
|
this.trace(`Running babel transformations with ${plugins.length} plugins and ${presets.length} presets for file: ${id}`);
|
|
52
58
|
const result = await transformAsync(code, {
|
|
53
59
|
highlightCode: true,
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { transformAsync } from \"@babel/core\";\nimport type { Plugin } from \"@powerlines/core\";\nimport {\n findFileExtension,\n findFileExtensionSafe\n} from \"@stryke/path/file-path-fns\";\nimport { isParentPath } from \"@stryke/path/is-parent-path\";\nimport { isSetObject } from \"@stryke/type-checks/is-set-object\";\nimport defu from \"defu\";\nimport { isDuplicatePlugin } from \"./helpers/filters\";\nimport { resolveBabelPlugin } from \"./helpers/options\";\nimport { ResolvedBabelTransformPluginOptions } from \"./types/config\";\nimport { BabelPluginContext, BabelPluginOptions } from \"./types/plugin\";\n\nexport * from \"./helpers\";\nexport * from \"./types\";\n\ndeclare module \"@powerlines/core\" {\n interface Config {\n babel?: BabelPluginOptions;\n }\n}\n\n/**\n * Babel plugin for Powerlines.\n *\n * @param options - The Babel plugin user configuration options.\n * @returns A Powerlines plugin that integrates Babel transformations.\n */\nexport const plugin = <\n TContext extends BabelPluginContext = BabelPluginContext\n>(\n options: BabelPluginOptions = {}\n): Plugin<TContext> => {\n return {\n name: \"babel\",\n config() {\n if (!isSetObject(options)) {\n return undefined;\n }\n\n return {\n babel: options\n };\n },\n configResolved: {\n order: \"pre\",\n handler() {\n this.config.babel = defu(this.config.babel ?? {}, {\n plugins: [],\n presets: []\n });\n }\n },\n async transform(code: string, id: string) {\n if (\n isParentPath(id, this.powerlinesPath) ||\n code.includes(\"/* @powerlines-ignore */\") ||\n code.includes(\"/* @powerlines-disable */\")\n ) {\n this.trace(`Skipping Babel transformation for: ${id}`);\n\n return { code, id };\n }\n\n const plugins = this.config.babel.plugins\n .map(plugin => resolveBabelPlugin(this, code, id, plugin))\n .filter(\n (plugin
|
|
1
|
+
{"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { transformAsync } from \"@babel/core\";\nimport type { Plugin } from \"@powerlines/core\";\nimport {\n findFileExtension,\n findFileExtensionSafe\n} from \"@stryke/path/file-path-fns\";\nimport { isParentPath } from \"@stryke/path/is-parent-path\";\nimport { isSetObject } from \"@stryke/type-checks/is-set-object\";\nimport defu from \"defu\";\nimport { isDuplicatePlugin } from \"./helpers/filters\";\nimport { resolveBabelPlugin } from \"./helpers/options\";\nimport { ResolvedBabelTransformPluginOptions } from \"./types/config\";\nimport { BabelPluginContext, BabelPluginOptions } from \"./types/plugin\";\n\nexport * from \"./helpers\";\nexport * from \"./types\";\n\ndeclare module \"@powerlines/core\" {\n interface Config {\n babel?: BabelPluginOptions;\n }\n}\n\n/**\n * Babel plugin for Powerlines.\n *\n * @param options - The Babel plugin user configuration options.\n * @returns A Powerlines plugin that integrates Babel transformations.\n */\nexport const plugin = <\n TContext extends BabelPluginContext = BabelPluginContext\n>(\n options: BabelPluginOptions = {}\n): Plugin<TContext> => {\n return {\n name: \"babel\",\n config() {\n if (!isSetObject(options)) {\n return undefined;\n }\n\n return {\n babel: options\n };\n },\n configResolved: {\n order: \"pre\",\n handler() {\n this.config.babel = defu(this.config.babel ?? {}, {\n plugins: [],\n presets: []\n });\n }\n },\n async transform(code: string, id: string) {\n if (\n isParentPath(id, this.powerlinesPath) ||\n code.includes(\"/* @powerlines-ignore */\") ||\n code.includes(\"/* @powerlines-disable */\")\n ) {\n this.trace(`Skipping Babel transformation for: ${id}`);\n\n return { code, id };\n }\n\n const plugins = this.config.babel.plugins\n .map(plugin => resolveBabelPlugin(this, code, id, plugin))\n .filter(Boolean)\n .reduce(\n (\n ret: ResolvedBabelTransformPluginOptions[],\n plugin: ResolvedBabelTransformPluginOptions\n ) => {\n if (plugin && !isDuplicatePlugin(ret, plugin)) {\n ret.push(plugin);\n }\n\n return ret;\n },\n [] as ResolvedBabelTransformPluginOptions[]\n ) as ResolvedBabelTransformPluginOptions[];\n const presets = this.config.babel.presets\n .map(preset => resolveBabelPlugin(this, code, id, preset))\n .filter(Boolean)\n .reduce(\n (\n ret: ResolvedBabelTransformPluginOptions[],\n preset: ResolvedBabelTransformPluginOptions\n ) => {\n if (preset && !isDuplicatePlugin(ret, preset)) {\n ret.push(preset);\n }\n\n return ret;\n },\n [] as ResolvedBabelTransformPluginOptions[]\n ) as ResolvedBabelTransformPluginOptions[];\n\n if (\n Array.isArray(plugins) &&\n plugins.length === 0 &&\n Array.isArray(presets) &&\n presets.length === 0\n ) {\n return { code, id };\n }\n\n if (\n !this.config.babel?.skipConfigResolution &&\n /^(?:m|c)?tsx?$/.test(\n findFileExtensionSafe(id, {\n fullExtension: true\n })\n ) &&\n !isDuplicatePlugin(plugins, \"@babel/plugin-syntax-typescript\") &&\n !isDuplicatePlugin(presets, \"@babel/preset-typescript\")\n ) {\n plugins.unshift([\n \"@babel/plugin-syntax-typescript\",\n { isTSX: findFileExtension(id) === \"tsx\" }\n ]);\n }\n\n this.trace(\n `Running babel transformations with ${plugins.length} plugins and ${\n presets.length\n } presets for file: ${id}`\n );\n\n const result = await transformAsync(code, {\n highlightCode: true,\n code: true,\n ast: false,\n cloneInputAst: false,\n comments: true,\n sourceType: \"module\",\n configFile: false,\n babelrc: false,\n envName: this.config.mode,\n caller: {\n name: this.config.framework\n },\n ...(this.config.babel ?? {}),\n filename: id,\n plugins: plugins\n .map(plugin => {\n return Array.isArray(plugin) && plugin.length >= 2\n ? [\n plugin[0],\n defu(plugin.length > 1 && plugin[1] ? plugin[1] : {}, {\n options\n })\n ]\n : plugin;\n })\n .filter(Boolean),\n presets: presets\n .map(preset => {\n return Array.isArray(preset) && preset.length >= 2\n ? [\n preset[0],\n defu(preset.length > 1 && preset[1] ? preset[1] : {}, {\n options\n })\n ]\n : preset;\n })\n .filter(Boolean)\n });\n if (!result?.code) {\n throw new Error(`Powerlines - Babel plugin failed to compile ${id}`);\n }\n\n this.trace(`Completed babel transformations for file: ${id}`);\n\n return { code: result.code, id };\n }\n } as Plugin<TContext>;\n};\n\nexport default plugin;\n"],"mappings":";;;;;;;;;;;;;;;;;;;AA+CA,MAAa,UAGX,UAA8B,EAAE,KACX;AACrB,QAAO;EACL,MAAM;EACN,SAAS;AACP,OAAI,CAAC,YAAY,QAAQ,CACvB;AAGF,UAAO,EACL,OAAO,SACR;;EAEH,gBAAgB;GACd,OAAO;GACP,UAAU;AACR,SAAK,OAAO,QAAQ,KAAK,KAAK,OAAO,SAAS,EAAE,EAAE;KAChD,SAAS,EAAE;KACX,SAAS,EAAE;KACZ,CAAC;;GAEL;EACD,MAAM,UAAU,MAAc,IAAY;AACxC,OACE,aAAa,IAAI,KAAK,eAAe,IACrC,KAAK,SAAS,2BAA2B,IACzC,KAAK,SAAS,4BAA4B,EAC1C;AACA,SAAK,MAAM,sCAAsC,KAAK;AAEtD,WAAO;KAAE;KAAM;KAAI;;GAGrB,MAAM,UAAU,KAAK,OAAO,MAAM,QAC/B,KAAI,WAAU,mBAAmB,MAAM,MAAM,IAAI,OAAO,CAAC,CACzD,OAAO,QAAQ,CACf,QAEG,KACA,WACG;AACH,QAAI,UAAU,CAAC,kBAAkB,KAAK,OAAO,CAC3C,KAAI,KAAK,OAAO;AAGlB,WAAO;MAET,EAAE,CACH;GACH,MAAM,UAAU,KAAK,OAAO,MAAM,QAC/B,KAAI,WAAU,mBAAmB,MAAM,MAAM,IAAI,OAAO,CAAC,CACzD,OAAO,QAAQ,CACf,QAEG,KACA,WACG;AACH,QAAI,UAAU,CAAC,kBAAkB,KAAK,OAAO,CAC3C,KAAI,KAAK,OAAO;AAGlB,WAAO;MAET,EAAE,CACH;AAEH,OACE,MAAM,QAAQ,QAAQ,IACtB,QAAQ,WAAW,KACnB,MAAM,QAAQ,QAAQ,IACtB,QAAQ,WAAW,EAEnB,QAAO;IAAE;IAAM;IAAI;AAGrB,OACE,CAAC,KAAK,OAAO,OAAO,wBACpB,iBAAiB,KACf,sBAAsB,IAAI,EACxB,eAAe,MAChB,CAAC,CACH,IACD,CAAC,kBAAkB,SAAS,kCAAkC,IAC9D,CAAC,kBAAkB,SAAS,2BAA2B,CAEvD,SAAQ,QAAQ,CACd,mCACA,EAAE,OAAO,kBAAkB,GAAG,KAAK,OAAO,CAC3C,CAAC;AAGJ,QAAK,MACH,sCAAsC,QAAQ,OAAO,eACnD,QAAQ,OACT,qBAAqB,KACvB;GAED,MAAM,SAAS,MAAM,eAAe,MAAM;IACxC,eAAe;IACf,MAAM;IACN,KAAK;IACL,eAAe;IACf,UAAU;IACV,YAAY;IACZ,YAAY;IACZ,SAAS;IACT,SAAS,KAAK,OAAO;IACrB,QAAQ,EACN,MAAM,KAAK,OAAO,WACnB;IACD,GAAI,KAAK,OAAO,SAAS,EAAE;IAC3B,UAAU;IACV,SAAS,QACN,KAAI,WAAU;AACb,YAAO,MAAM,QAAQ,OAAO,IAAI,OAAO,UAAU,IAC7C,CACE,OAAO,IACP,KAAK,OAAO,SAAS,KAAK,OAAO,KAAK,OAAO,KAAK,EAAE,EAAE,EACpD,SACD,CAAC,CACH,GACD;MACJ,CACD,OAAO,QAAQ;IAClB,SAAS,QACN,KAAI,WAAU;AACb,YAAO,MAAM,QAAQ,OAAO,IAAI,OAAO,UAAU,IAC7C,CACE,OAAO,IACP,KAAK,OAAO,SAAS,KAAK,OAAO,KAAK,OAAO,KAAK,EAAE,EAAE,EACpD,SACD,CAAC,CACH,GACD;MACJ,CACD,OAAO,QAAQ;IACnB,CAAC;AACF,OAAI,CAAC,QAAQ,KACX,OAAM,IAAI,MAAM,+CAA+C,KAAK;AAGtE,QAAK,MAAM,6CAA6C,KAAK;AAE7D,UAAO;IAAE,MAAM,OAAO;IAAM;IAAI;;EAEnC"}
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -2,12 +2,16 @@ import { BabelResolvedConfig, BabelUserConfig } from "./config.cjs";
|
|
|
2
2
|
import { PluginContext, ResolvedConfig, UserConfig } from "@powerlines/core";
|
|
3
3
|
|
|
4
4
|
//#region src/types/plugin.d.ts
|
|
5
|
-
type BabelPluginOptions = Partial<BabelUserConfig
|
|
5
|
+
type BabelPluginOptions = Partial<BabelUserConfig> & {
|
|
6
|
+
skipConfigResolution?: boolean;
|
|
7
|
+
};
|
|
6
8
|
type BabelPluginUserConfig = UserConfig & {
|
|
7
9
|
babel?: BabelPluginOptions;
|
|
8
10
|
};
|
|
9
11
|
interface BabelPluginResolvedConfig extends ResolvedConfig {
|
|
10
|
-
babel: BabelResolvedConfig
|
|
12
|
+
babel: BabelResolvedConfig & {
|
|
13
|
+
skipConfigResolution?: boolean;
|
|
14
|
+
};
|
|
11
15
|
}
|
|
12
16
|
type BabelPluginContext<TResolvedConfig extends BabelPluginResolvedConfig = BabelPluginResolvedConfig> = PluginContext<TResolvedConfig>;
|
|
13
17
|
declare type __ΩBabelPluginOptions = any[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.cts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;;KAyBY,kBAAA,GAAqB,OAAA,CAAQ,eAAA;AAAA,
|
|
1
|
+
{"version":3,"file":"plugin.d.cts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;;KAyBY,kBAAA,GAAqB,OAAA,CAAQ,eAAA;EACvC,oBAAA;AAAA;AAAA,KAGU,qBAAA,GAAwB,UAAA;EAClC,KAAA,GAAQ,kBAAA;AAAA;AAAA,UAGO,yBAAA,SAAkC,cAAA;EACjD,KAAA,EAAO,mBAAA;IACL,oBAAA;EAAA;AAAA;AAAA,KAIQ,kBAAA,yBACc,yBAAA,GAA4B,yBAAA,IAClD,aAAA,CAAc,eAAA;AAAA"}
|
package/dist/types/plugin.d.mts
CHANGED
|
@@ -2,12 +2,16 @@ import { BabelResolvedConfig, BabelUserConfig } from "./config.mjs";
|
|
|
2
2
|
import { PluginContext, ResolvedConfig, UserConfig } from "@powerlines/core";
|
|
3
3
|
|
|
4
4
|
//#region src/types/plugin.d.ts
|
|
5
|
-
type BabelPluginOptions = Partial<BabelUserConfig
|
|
5
|
+
type BabelPluginOptions = Partial<BabelUserConfig> & {
|
|
6
|
+
skipConfigResolution?: boolean;
|
|
7
|
+
};
|
|
6
8
|
type BabelPluginUserConfig = UserConfig & {
|
|
7
9
|
babel?: BabelPluginOptions;
|
|
8
10
|
};
|
|
9
11
|
interface BabelPluginResolvedConfig extends ResolvedConfig {
|
|
10
|
-
babel: BabelResolvedConfig
|
|
12
|
+
babel: BabelResolvedConfig & {
|
|
13
|
+
skipConfigResolution?: boolean;
|
|
14
|
+
};
|
|
11
15
|
}
|
|
12
16
|
type BabelPluginContext<TResolvedConfig extends BabelPluginResolvedConfig = BabelPluginResolvedConfig> = PluginContext<TResolvedConfig>;
|
|
13
17
|
declare type __ΩBabelPluginOptions = any[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;;KAyBY,kBAAA,GAAqB,OAAA,CAAQ,eAAA;AAAA,
|
|
1
|
+
{"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;;KAyBY,kBAAA,GAAqB,OAAA,CAAQ,eAAA;EACvC,oBAAA;AAAA;AAAA,KAGU,qBAAA,GAAwB,UAAA;EAClC,KAAA,GAAQ,kBAAA;AAAA;AAAA,UAGO,yBAAA,SAAkC,cAAA;EACjD,KAAA,EAAO,mBAAA;IACL,oBAAA;EAAA;AAAA;AAAA,KAIQ,kBAAA,yBACc,yBAAA,GAA4B,yBAAA,IAClD,aAAA,CAAc,eAAA;AAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-babel",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.352",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
|
|
6
6
|
"keywords": ["babel", "powerlines", "storm-software", "powerlines-plugin"],
|
|
@@ -91,12 +91,12 @@
|
|
|
91
91
|
"@babel/parser": "^7.29.0",
|
|
92
92
|
"@babel/plugin-syntax-typescript": "^7.28.6",
|
|
93
93
|
"@babel/types": "^7.29.0",
|
|
94
|
-
"@powerlines/core": "^0.3.
|
|
94
|
+
"@powerlines/core": "^0.3.6",
|
|
95
95
|
"@storm-software/config-tools": "1.189.28",
|
|
96
|
-
"@stryke/fs": "^0.33.
|
|
97
|
-
"@stryke/path": "^0.
|
|
98
|
-
"@stryke/type-checks": "^0.5.
|
|
99
|
-
"@stryke/types": "^0.10.
|
|
96
|
+
"@stryke/fs": "^0.33.58",
|
|
97
|
+
"@stryke/path": "^0.27.0",
|
|
98
|
+
"@stryke/type-checks": "^0.5.39",
|
|
99
|
+
"@stryke/types": "^0.10.53",
|
|
100
100
|
"chalk": "5.6.2",
|
|
101
101
|
"defu": "^6.1.4",
|
|
102
102
|
"jiti": "^2.6.1"
|
|
@@ -148,5 +148,5 @@
|
|
|
148
148
|
"./package.json": "./package.json"
|
|
149
149
|
}
|
|
150
150
|
},
|
|
151
|
-
"gitHead": "
|
|
151
|
+
"gitHead": "369e884879e82b75feffe7cfd91c78584accb1d2"
|
|
152
152
|
}
|