@powerlines/plugin-babel 0.12.131 → 0.12.132
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/{babel-B9i2IAT_.d.cts → babel-BBpAODp3.d.cts} +8 -1
- package/dist/{babel-DY_imD3U.d.mts → babel-Cbfq7l5M.d.mts} +8 -1
- package/dist/{create-plugin-CNzMrex8.d.mts → create-plugin-Bovo30sw.d.cts} +1 -1
- package/dist/{create-plugin-CQA6zFdt.d.cts → create-plugin-C9ijark9.d.mts} +1 -1
- package/dist/{filters-D6Qe6UbO.d.cts → filters-BKYGMZeC.d.cts} +1 -1
- package/dist/{filters-93Z-7Nov.d.mts → filters-BjswEAwZ.d.mts} +1 -1
- package/dist/helpers/create-plugin.d.cts +2 -2
- package/dist/helpers/create-plugin.d.mts +2 -2
- package/dist/helpers/filters.d.cts +2 -2
- package/dist/helpers/filters.d.mts +2 -2
- package/dist/helpers/index.d.cts +5 -5
- package/dist/helpers/index.d.mts +5 -5
- package/dist/helpers/module-helpers.d.cts +2 -2
- package/dist/helpers/module-helpers.d.mts +2 -2
- package/dist/helpers/options.d.cts +2 -2
- package/dist/helpers/options.d.mts +2 -2
- package/dist/index.d.cts +6 -6
- package/dist/index.d.mts +6 -6
- package/dist/{module-helpers-DRUocgcq.d.cts → module-helpers-CrrcOmWC.d.cts} +1 -1
- package/dist/{module-helpers-DiSYdstQ.d.mts → module-helpers-R1r-1jnQ.d.mts} +1 -1
- package/dist/{options-CCMyIIWc.d.cts → options-BR6Dzmpl.d.mts} +1 -1
- package/dist/{options-DgdPmsbF.d.mts → options-jLnSoEkN.d.cts} +1 -1
- package/dist/{plugin-Bc0EOyGF.d.mts → plugin-CctoTNv_.d.mts} +1 -1
- package/dist/{plugin-DhjfPNQS.d.cts → plugin-DzY_qzHo.d.cts} +1 -1
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.mts +2 -2
- package/dist/types/plugin.d.cts +2 -2
- package/dist/types/plugin.d.mts +2 -2
- package/package.json +5 -5
|
@@ -679,7 +679,7 @@ type OutputResolvedConfig = Required<Omit<OutputConfig, "assets" | "storage"> &
|
|
|
679
679
|
/**
|
|
680
680
|
* The resolved options for the Powerlines project configuration.
|
|
681
681
|
*/
|
|
682
|
-
type ResolvedConfig$1<TUserConfig extends UserConfig = UserConfig> = Omit<TUserConfig, "name" | "title" | "compatibilityDate" | "plugins" | "mode" | "environments" | "platform" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "variant" | "type" | "output" | "logLevel" | "framework" | "sourceRoot"> & Required<Pick<TUserConfig, "name" | "title" | "compatibilityDate" | "plugins" | "mode" | "environments" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "framework" | "sourceRoot">> & {
|
|
682
|
+
type ResolvedConfig$1<TUserConfig extends UserConfig = UserConfig> = Omit<TUserConfig, "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "platform" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "variant" | "type" | "output" | "logLevel" | "framework" | "sourceRoot"> & Required<Pick<TUserConfig, "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "framework" | "sourceRoot">> & {
|
|
683
683
|
/**
|
|
684
684
|
* The configuration options that were provided inline to the Powerlines CLI.
|
|
685
685
|
*/
|
|
@@ -1632,6 +1632,13 @@ interface CommonUserConfig extends BaseConfig {
|
|
|
1632
1632
|
* If this option is not provided, the build process will try to use the \`description\` value from the `\package.json\` file.
|
|
1633
1633
|
*/
|
|
1634
1634
|
description?: string;
|
|
1635
|
+
/**
|
|
1636
|
+
* The organization or author of the project
|
|
1637
|
+
*
|
|
1638
|
+
* @remarks
|
|
1639
|
+
* If this option is not provided, the build process will try to use the \`author\` value from the \`package.json\` file. If the \`author\` value cannot be determined, the {@link name | name configuration} will be used.
|
|
1640
|
+
*/
|
|
1641
|
+
organization?: string;
|
|
1635
1642
|
/**
|
|
1636
1643
|
* The date to use for compatibility checks
|
|
1637
1644
|
*
|
|
@@ -679,7 +679,7 @@ type OutputResolvedConfig = Required<Omit<OutputConfig, "assets" | "storage"> &
|
|
|
679
679
|
/**
|
|
680
680
|
* The resolved options for the Powerlines project configuration.
|
|
681
681
|
*/
|
|
682
|
-
type ResolvedConfig$1<TUserConfig extends UserConfig = UserConfig> = Omit<TUserConfig, "name" | "title" | "compatibilityDate" | "plugins" | "mode" | "environments" | "platform" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "variant" | "type" | "output" | "logLevel" | "framework" | "sourceRoot"> & Required<Pick<TUserConfig, "name" | "title" | "compatibilityDate" | "plugins" | "mode" | "environments" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "framework" | "sourceRoot">> & {
|
|
682
|
+
type ResolvedConfig$1<TUserConfig extends UserConfig = UserConfig> = Omit<TUserConfig, "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "platform" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "variant" | "type" | "output" | "logLevel" | "framework" | "sourceRoot"> & Required<Pick<TUserConfig, "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "framework" | "sourceRoot">> & {
|
|
683
683
|
/**
|
|
684
684
|
* The configuration options that were provided inline to the Powerlines CLI.
|
|
685
685
|
*/
|
|
@@ -1632,6 +1632,13 @@ interface CommonUserConfig extends BaseConfig {
|
|
|
1632
1632
|
* If this option is not provided, the build process will try to use the \`description\` value from the `\package.json\` file.
|
|
1633
1633
|
*/
|
|
1634
1634
|
description?: string;
|
|
1635
|
+
/**
|
|
1636
|
+
* The organization or author of the project
|
|
1637
|
+
*
|
|
1638
|
+
* @remarks
|
|
1639
|
+
* If this option is not provided, the build process will try to use the \`author\` value from the \`package.json\` file. If the \`author\` value cannot be determined, the {@link name | name configuration} will be used.
|
|
1640
|
+
*/
|
|
1641
|
+
organization?: string;
|
|
1635
1642
|
/**
|
|
1636
1643
|
* The date to use for compatibility checks
|
|
1637
1644
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as DeclareBabelTransformPluginReturn, n as BabelTransformPluginBuilder, u as Context } from "./babel-
|
|
1
|
+
import { a as DeclareBabelTransformPluginReturn, n as BabelTransformPluginBuilder, u as Context } from "./babel-BBpAODp3.cjs";
|
|
2
2
|
|
|
3
3
|
//#region src/helpers/create-plugin.d.ts
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as DeclareBabelTransformPluginReturn, n as BabelTransformPluginBuilder, u as Context } from "./babel-
|
|
1
|
+
import { a as DeclareBabelTransformPluginReturn, n as BabelTransformPluginBuilder, u as Context } from "./babel-Cbfq7l5M.mjs";
|
|
2
2
|
|
|
3
3
|
//#region src/helpers/create-plugin.d.ts
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { i as BabelTransformPluginOptions, r as BabelTransformPluginFilter, s as ResolvedBabelTransformPluginOptions, t as BabelTransformPlugin, u as Context } from "./babel-
|
|
1
|
+
import { i as BabelTransformPluginOptions, r as BabelTransformPluginFilter, s as ResolvedBabelTransformPluginOptions, t as BabelTransformPlugin, u as Context } from "./babel-BBpAODp3.cjs";
|
|
2
2
|
|
|
3
3
|
//#region src/helpers/filters.d.ts
|
|
4
4
|
declare function getPluginName(plugin: BabelTransformPluginOptions): string | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { i as BabelTransformPluginOptions, r as BabelTransformPluginFilter, s as ResolvedBabelTransformPluginOptions, t as BabelTransformPlugin, u as Context } from "./babel-
|
|
1
|
+
import { i as BabelTransformPluginOptions, r as BabelTransformPluginFilter, s as ResolvedBabelTransformPluginOptions, t as BabelTransformPlugin, u as Context } from "./babel-Cbfq7l5M.mjs";
|
|
2
2
|
import { MaybePromise } from "@stryke/types/base";
|
|
3
3
|
import { UnpluginOptions } from "unplugin";
|
|
4
4
|
import { ArrayValues } from "@stryke/types/array";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import "../babel-
|
|
2
|
-
import { t as createBabelPlugin } from "../create-plugin-
|
|
1
|
+
import "../babel-BBpAODp3.cjs";
|
|
2
|
+
import { t as createBabelPlugin } from "../create-plugin-Bovo30sw.cjs";
|
|
3
3
|
export { createBabelPlugin };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import "../babel-
|
|
2
|
-
import { t as createBabelPlugin } from "../create-plugin-
|
|
1
|
+
import "../babel-Cbfq7l5M.mjs";
|
|
2
|
+
import { t as createBabelPlugin } from "../create-plugin-C9ijark9.mjs";
|
|
3
3
|
export { createBabelPlugin };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import "../babel-
|
|
2
|
-
import { i as isDuplicatePlugin, n as filterPluginByFileId, r as getPluginName, t as addPluginFilter } from "../filters-
|
|
1
|
+
import "../babel-BBpAODp3.cjs";
|
|
2
|
+
import { i as isDuplicatePlugin, n as filterPluginByFileId, r as getPluginName, t as addPluginFilter } from "../filters-BKYGMZeC.cjs";
|
|
3
3
|
export { addPluginFilter, filterPluginByFileId, getPluginName, isDuplicatePlugin };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import "../babel-
|
|
2
|
-
import { i as isDuplicatePlugin, n as filterPluginByFileId, r as getPluginName, t as addPluginFilter } from "../filters-
|
|
1
|
+
import "../babel-Cbfq7l5M.mjs";
|
|
2
|
+
import { i as isDuplicatePlugin, n as filterPluginByFileId, r as getPluginName, t as addPluginFilter } from "../filters-BjswEAwZ.mjs";
|
|
3
3
|
export { addPluginFilter, filterPluginByFileId, getPluginName, isDuplicatePlugin };
|
package/dist/helpers/index.d.cts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { a as parseAst, i as generateFromAst, n as GeneratorResult, r as __ΩGenerateFromAstOptions, t as GenerateFromAstOptions } from "../ast-utils-DeuXcuqs.cjs";
|
|
2
|
-
import "../babel-
|
|
3
|
-
import { t as createBabelPlugin } from "../create-plugin-
|
|
4
|
-
import { i as isDuplicatePlugin, n as filterPluginByFileId, r as getPluginName, t as addPluginFilter } from "../filters-
|
|
5
|
-
import { a as isImportCall, i as getImport, n as addImportsToProgram, o as listExports, r as findExport, s as listImports, t as addImport } from "../module-helpers-
|
|
6
|
-
import { n as resolvePluginFunction, t as resolveBabelPlugin } from "../options-
|
|
2
|
+
import "../babel-BBpAODp3.cjs";
|
|
3
|
+
import { t as createBabelPlugin } from "../create-plugin-Bovo30sw.cjs";
|
|
4
|
+
import { i as isDuplicatePlugin, n as filterPluginByFileId, r as getPluginName, t as addPluginFilter } from "../filters-BKYGMZeC.cjs";
|
|
5
|
+
import { a as isImportCall, i as getImport, n as addImportsToProgram, o as listExports, r as findExport, s as listImports, t as addImport } from "../module-helpers-CrrcOmWC.cjs";
|
|
6
|
+
import { n as resolvePluginFunction, t as resolveBabelPlugin } from "../options-jLnSoEkN.cjs";
|
|
7
7
|
import "../index-DeEmP3Jc.cjs";
|
|
8
8
|
export { GenerateFromAstOptions, GeneratorResult, __ΩGenerateFromAstOptions, addImport, addImportsToProgram, addPluginFilter, createBabelPlugin, filterPluginByFileId, findExport, generateFromAst, getImport, getPluginName, isDuplicatePlugin, isImportCall, listExports, listImports, parseAst, resolveBabelPlugin, resolvePluginFunction };
|
package/dist/helpers/index.d.mts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { a as parseAst, i as generateFromAst, n as GeneratorResult, r as __ΩGenerateFromAstOptions, t as GenerateFromAstOptions } from "../ast-utils-Bs6DBkKg.mjs";
|
|
2
|
-
import "../babel-
|
|
3
|
-
import { t as createBabelPlugin } from "../create-plugin-
|
|
4
|
-
import { i as isDuplicatePlugin, n as filterPluginByFileId, r as getPluginName, t as addPluginFilter } from "../filters-
|
|
5
|
-
import { a as isImportCall, i as getImport, n as addImportsToProgram, o as listExports, r as findExport, s as listImports, t as addImport } from "../module-helpers-
|
|
6
|
-
import { n as resolvePluginFunction, t as resolveBabelPlugin } from "../options-
|
|
2
|
+
import "../babel-Cbfq7l5M.mjs";
|
|
3
|
+
import { t as createBabelPlugin } from "../create-plugin-C9ijark9.mjs";
|
|
4
|
+
import { i as isDuplicatePlugin, n as filterPluginByFileId, r as getPluginName, t as addPluginFilter } from "../filters-BjswEAwZ.mjs";
|
|
5
|
+
import { a as isImportCall, i as getImport, n as addImportsToProgram, o as listExports, r as findExport, s as listImports, t as addImport } from "../module-helpers-R1r-1jnQ.mjs";
|
|
6
|
+
import { n as resolvePluginFunction, t as resolveBabelPlugin } from "../options-BR6Dzmpl.mjs";
|
|
7
7
|
import "../index-ClXLQ1fw.mjs";
|
|
8
8
|
export { GenerateFromAstOptions, GeneratorResult, __ΩGenerateFromAstOptions, addImport, addImportsToProgram, addPluginFilter, createBabelPlugin, filterPluginByFileId, findExport, generateFromAst, getImport, getPluginName, isDuplicatePlugin, isImportCall, listExports, listImports, parseAst, resolveBabelPlugin, resolvePluginFunction };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import "../babel-
|
|
2
|
-
import { a as isImportCall, i as getImport, n as addImportsToProgram, o as listExports, r as findExport, s as listImports, t as addImport } from "../module-helpers-
|
|
1
|
+
import "../babel-BBpAODp3.cjs";
|
|
2
|
+
import { a as isImportCall, i as getImport, n as addImportsToProgram, o as listExports, r as findExport, s as listImports, t as addImport } from "../module-helpers-CrrcOmWC.cjs";
|
|
3
3
|
export { addImport, addImportsToProgram, findExport, getImport, isImportCall, listExports, listImports };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import "../babel-
|
|
2
|
-
import { a as isImportCall, i as getImport, n as addImportsToProgram, o as listExports, r as findExport, s as listImports, t as addImport } from "../module-helpers-
|
|
1
|
+
import "../babel-Cbfq7l5M.mjs";
|
|
2
|
+
import { a as isImportCall, i as getImport, n as addImportsToProgram, o as listExports, r as findExport, s as listImports, t as addImport } from "../module-helpers-R1r-1jnQ.mjs";
|
|
3
3
|
export { addImport, addImportsToProgram, findExport, getImport, isImportCall, listExports, listImports };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import "../babel-
|
|
2
|
-
import { n as resolvePluginFunction, t as resolveBabelPlugin } from "../options-
|
|
1
|
+
import "../babel-BBpAODp3.cjs";
|
|
2
|
+
import { n as resolvePluginFunction, t as resolveBabelPlugin } from "../options-jLnSoEkN.cjs";
|
|
3
3
|
export { resolveBabelPlugin, resolvePluginFunction };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import "../babel-
|
|
2
|
-
import { n as resolvePluginFunction, t as resolveBabelPlugin } from "../options-
|
|
1
|
+
import "../babel-Cbfq7l5M.mjs";
|
|
2
|
+
import { n as resolvePluginFunction, t as resolveBabelPlugin } from "../options-BR6Dzmpl.mjs";
|
|
3
3
|
export { resolveBabelPlugin, resolvePluginFunction };
|
package/dist/index.d.cts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { a as parseAst, i as generateFromAst, n as GeneratorResult, r as __ΩGenerateFromAstOptions, t as GenerateFromAstOptions } from "./ast-utils-DeuXcuqs.cjs";
|
|
2
|
-
import { f as Plugin } from "./babel-
|
|
3
|
-
import { t as createBabelPlugin } from "./create-plugin-
|
|
4
|
-
import { i as isDuplicatePlugin, n as filterPluginByFileId, r as getPluginName, t as addPluginFilter } from "./filters-
|
|
5
|
-
import { a as isImportCall, i as getImport, n as addImportsToProgram, o as listExports, r as findExport, s as listImports, t as addImport } from "./module-helpers-
|
|
6
|
-
import { n as resolvePluginFunction, t as resolveBabelPlugin } from "./options-
|
|
2
|
+
import { f as Plugin } from "./babel-BBpAODp3.cjs";
|
|
3
|
+
import { t as createBabelPlugin } from "./create-plugin-Bovo30sw.cjs";
|
|
4
|
+
import { i as isDuplicatePlugin, n as filterPluginByFileId, r as getPluginName, t as addPluginFilter } from "./filters-BKYGMZeC.cjs";
|
|
5
|
+
import { a as isImportCall, i as getImport, n as addImportsToProgram, o as listExports, r as findExport, s as listImports, t as addImport } from "./module-helpers-CrrcOmWC.cjs";
|
|
6
|
+
import { n as resolvePluginFunction, t as resolveBabelPlugin } from "./options-jLnSoEkN.cjs";
|
|
7
7
|
import "./index-DeEmP3Jc.cjs";
|
|
8
|
-
import { a as __ΩBabelPluginContext, c as __ΩBabelPluginUserConfig, i as BabelPluginUserConfig, n as BabelPluginOptions, o as __ΩBabelPluginOptions, r as BabelPluginResolvedConfig, s as __ΩBabelPluginResolvedConfig, t as BabelPluginContext } from "./plugin-
|
|
8
|
+
import { a as __ΩBabelPluginContext, c as __ΩBabelPluginUserConfig, i as BabelPluginUserConfig, n as BabelPluginOptions, o as __ΩBabelPluginOptions, r as BabelPluginResolvedConfig, s as __ΩBabelPluginResolvedConfig, t as BabelPluginContext } from "./plugin-DzY_qzHo.cjs";
|
|
9
9
|
import "./index-zO0Ly4bS.cjs";
|
|
10
10
|
|
|
11
11
|
//#region src/index.d.ts
|
package/dist/index.d.mts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { a as parseAst, i as generateFromAst, n as GeneratorResult, r as __ΩGenerateFromAstOptions, t as GenerateFromAstOptions } from "./ast-utils-Bs6DBkKg.mjs";
|
|
2
|
-
import { f as Plugin } from "./babel-
|
|
3
|
-
import { t as createBabelPlugin } from "./create-plugin-
|
|
4
|
-
import { i as isDuplicatePlugin, n as filterPluginByFileId, r as getPluginName, t as addPluginFilter } from "./filters-
|
|
5
|
-
import { a as isImportCall, i as getImport, n as addImportsToProgram, o as listExports, r as findExport, s as listImports, t as addImport } from "./module-helpers-
|
|
6
|
-
import { n as resolvePluginFunction, t as resolveBabelPlugin } from "./options-
|
|
2
|
+
import { f as Plugin } from "./babel-Cbfq7l5M.mjs";
|
|
3
|
+
import { t as createBabelPlugin } from "./create-plugin-C9ijark9.mjs";
|
|
4
|
+
import { i as isDuplicatePlugin, n as filterPluginByFileId, r as getPluginName, t as addPluginFilter } from "./filters-BjswEAwZ.mjs";
|
|
5
|
+
import { a as isImportCall, i as getImport, n as addImportsToProgram, o as listExports, r as findExport, s as listImports, t as addImport } from "./module-helpers-R1r-1jnQ.mjs";
|
|
6
|
+
import { n as resolvePluginFunction, t as resolveBabelPlugin } from "./options-BR6Dzmpl.mjs";
|
|
7
7
|
import "./index-ClXLQ1fw.mjs";
|
|
8
|
-
import { a as __ΩBabelPluginContext, c as __ΩBabelPluginUserConfig, i as BabelPluginUserConfig, n as BabelPluginOptions, o as __ΩBabelPluginOptions, r as BabelPluginResolvedConfig, s as __ΩBabelPluginResolvedConfig, t as BabelPluginContext } from "./plugin-
|
|
8
|
+
import { a as __ΩBabelPluginContext, c as __ΩBabelPluginUserConfig, i as BabelPluginUserConfig, n as BabelPluginOptions, o as __ΩBabelPluginOptions, r as BabelPluginResolvedConfig, s as __ΩBabelPluginResolvedConfig, t as BabelPluginContext } from "./plugin-CctoTNv_.mjs";
|
|
9
9
|
import "./index-QbUkWSLh.mjs";
|
|
10
10
|
|
|
11
11
|
//#region src/index.d.ts
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { i as BabelTransformPluginOptions, s as ResolvedBabelTransformPluginOptions, u as Context } from "./babel-
|
|
1
|
+
import { i as BabelTransformPluginOptions, s as ResolvedBabelTransformPluginOptions, u as Context } from "./babel-Cbfq7l5M.mjs";
|
|
2
2
|
import { PluginOptions, PluginTarget } from "@babel/core";
|
|
3
3
|
|
|
4
4
|
//#region src/helpers/options.d.ts
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { i as BabelTransformPluginOptions, s as ResolvedBabelTransformPluginOptions, u as Context } from "./babel-
|
|
1
|
+
import { i as BabelTransformPluginOptions, s as ResolvedBabelTransformPluginOptions, u as Context } from "./babel-BBpAODp3.cjs";
|
|
2
2
|
import { PluginOptions, PluginTarget } from "@babel/core";
|
|
3
3
|
|
|
4
4
|
//#region src/helpers/options.d.ts
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as BabelUserConfig, d as PluginContext, l as UserConfig, m as ResolvedConfig, p as BabelResolvedConfig } from "./babel-
|
|
1
|
+
import { c as BabelUserConfig, d as PluginContext, l as UserConfig, m as ResolvedConfig, p as BabelResolvedConfig } from "./babel-Cbfq7l5M.mjs";
|
|
2
2
|
|
|
3
3
|
//#region src/types/plugin.d.ts
|
|
4
4
|
type BabelPluginOptions = Partial<BabelUserConfig>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as BabelUserConfig, d as PluginContext, l as UserConfig, m as ResolvedConfig, p as BabelResolvedConfig } from "./babel-
|
|
1
|
+
import { c as BabelUserConfig, d as PluginContext, l as UserConfig, m as ResolvedConfig, p as BabelResolvedConfig } from "./babel-BBpAODp3.cjs";
|
|
2
2
|
|
|
3
3
|
//#region src/types/plugin.d.ts
|
|
4
4
|
type BabelPluginOptions = Partial<BabelUserConfig>;
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "../babel-
|
|
2
|
-
import { a as __ΩBabelPluginContext, c as __ΩBabelPluginUserConfig, i as BabelPluginUserConfig, n as BabelPluginOptions, o as __ΩBabelPluginOptions, r as BabelPluginResolvedConfig, s as __ΩBabelPluginResolvedConfig, t as BabelPluginContext } from "../plugin-
|
|
1
|
+
import "../babel-BBpAODp3.cjs";
|
|
2
|
+
import { a as __ΩBabelPluginContext, c as __ΩBabelPluginUserConfig, i as BabelPluginUserConfig, n as BabelPluginOptions, o as __ΩBabelPluginOptions, r as BabelPluginResolvedConfig, s as __ΩBabelPluginResolvedConfig, t as BabelPluginContext } from "../plugin-DzY_qzHo.cjs";
|
|
3
3
|
import "../index-zO0Ly4bS.cjs";
|
|
4
4
|
export { BabelPluginContext, BabelPluginOptions, BabelPluginResolvedConfig, BabelPluginUserConfig, __ΩBabelPluginContext, __ΩBabelPluginOptions, __ΩBabelPluginResolvedConfig, __ΩBabelPluginUserConfig };
|
package/dist/types/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "../babel-
|
|
2
|
-
import { a as __ΩBabelPluginContext, c as __ΩBabelPluginUserConfig, i as BabelPluginUserConfig, n as BabelPluginOptions, o as __ΩBabelPluginOptions, r as BabelPluginResolvedConfig, s as __ΩBabelPluginResolvedConfig, t as BabelPluginContext } from "../plugin-
|
|
1
|
+
import "../babel-Cbfq7l5M.mjs";
|
|
2
|
+
import { a as __ΩBabelPluginContext, c as __ΩBabelPluginUserConfig, i as BabelPluginUserConfig, n as BabelPluginOptions, o as __ΩBabelPluginOptions, r as BabelPluginResolvedConfig, s as __ΩBabelPluginResolvedConfig, t as BabelPluginContext } from "../plugin-CctoTNv_.mjs";
|
|
3
3
|
import "../index-QbUkWSLh.mjs";
|
|
4
4
|
export { BabelPluginContext, BabelPluginOptions, BabelPluginResolvedConfig, BabelPluginUserConfig, __ΩBabelPluginContext, __ΩBabelPluginOptions, __ΩBabelPluginResolvedConfig, __ΩBabelPluginUserConfig };
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import "../babel-
|
|
2
|
-
import { a as __ΩBabelPluginContext, c as __ΩBabelPluginUserConfig, i as BabelPluginUserConfig, n as BabelPluginOptions, o as __ΩBabelPluginOptions, r as BabelPluginResolvedConfig, s as __ΩBabelPluginResolvedConfig, t as BabelPluginContext } from "../plugin-
|
|
1
|
+
import "../babel-BBpAODp3.cjs";
|
|
2
|
+
import { a as __ΩBabelPluginContext, c as __ΩBabelPluginUserConfig, i as BabelPluginUserConfig, n as BabelPluginOptions, o as __ΩBabelPluginOptions, r as BabelPluginResolvedConfig, s as __ΩBabelPluginResolvedConfig, t as BabelPluginContext } from "../plugin-DzY_qzHo.cjs";
|
|
3
3
|
export { BabelPluginContext, BabelPluginOptions, BabelPluginResolvedConfig, BabelPluginUserConfig, __ΩBabelPluginContext, __ΩBabelPluginOptions, __ΩBabelPluginResolvedConfig, __ΩBabelPluginUserConfig };
|
package/dist/types/plugin.d.mts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import "../babel-
|
|
2
|
-
import { a as __ΩBabelPluginContext, c as __ΩBabelPluginUserConfig, i as BabelPluginUserConfig, n as BabelPluginOptions, o as __ΩBabelPluginOptions, r as BabelPluginResolvedConfig, s as __ΩBabelPluginResolvedConfig, t as BabelPluginContext } from "../plugin-
|
|
1
|
+
import "../babel-Cbfq7l5M.mjs";
|
|
2
|
+
import { a as __ΩBabelPluginContext, c as __ΩBabelPluginUserConfig, i as BabelPluginUserConfig, n as BabelPluginOptions, o as __ΩBabelPluginOptions, r as BabelPluginResolvedConfig, s as __ΩBabelPluginResolvedConfig, t as BabelPluginContext } from "../plugin-CctoTNv_.mjs";
|
|
3
3
|
export { BabelPluginContext, BabelPluginOptions, BabelPluginResolvedConfig, BabelPluginUserConfig, __ΩBabelPluginContext, __ΩBabelPluginOptions, __ΩBabelPluginResolvedConfig, __ΩBabelPluginUserConfig };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-babel",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.132",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
|
|
6
6
|
"repository": {
|
|
@@ -162,15 +162,15 @@
|
|
|
162
162
|
"chalk": "5.6.2",
|
|
163
163
|
"defu": "^6.1.4",
|
|
164
164
|
"jiti": "^2.6.1",
|
|
165
|
-
"powerlines": "^0.36.
|
|
165
|
+
"powerlines": "^0.36.27",
|
|
166
166
|
"unplugin": "3.0.0-beta.3"
|
|
167
167
|
},
|
|
168
168
|
"devDependencies": {
|
|
169
169
|
"@babel/plugin-syntax-typescript": "^7.27.1",
|
|
170
|
-
"@powerlines/nx": "^0.11.
|
|
171
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
170
|
+
"@powerlines/nx": "^0.11.53",
|
|
171
|
+
"@powerlines/plugin-plugin": "^0.12.75",
|
|
172
172
|
"@types/node": "^24.10.4"
|
|
173
173
|
},
|
|
174
174
|
"publishConfig": { "access": "public" },
|
|
175
|
-
"gitHead": "
|
|
175
|
+
"gitHead": "fbc59ce584fd0f78d90d2dbaa18f9c9267bd3b61"
|
|
176
176
|
}
|