@powerlines/plugin-react 0.1.122 → 0.1.124
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/_virtual/rolldown_runtime.cjs +37 -1
- package/dist/_virtual/rolldown_runtime.mjs +29 -1
- package/dist/components/index.cjs +3 -1
- package/dist/components/index.mjs +3 -1
- package/dist/components/react-optimized.cjs +45 -1
- package/dist/components/react-optimized.mjs +43 -1
- package/dist/deepkit/schemas/reflection.cjs +3940 -1
- package/dist/deepkit/schemas/reflection.mjs +3938 -1
- package/dist/deepkit/schemas/reflection2.cjs +4112 -1
- package/dist/deepkit/schemas/reflection2.mjs +4110 -1
- package/dist/deepkit/src/capnp.cjs +913 -1
- package/dist/deepkit/src/capnp.mjs +911 -1
- package/dist/deepkit/src/esbuild-plugin.cjs +47 -4
- package/dist/deepkit/src/esbuild-plugin.mjs +46 -4
- package/dist/deepkit/src/reflect-type.cjs +22 -1
- package/dist/deepkit/src/reflect-type.mjs +20 -1
- package/dist/deepkit/src/resolve-reflections.cjs +16 -1
- package/dist/deepkit/src/resolve-reflections.mjs +15 -1
- package/dist/deepkit/src/transformer.cjs +52 -1
- package/dist/deepkit/src/transformer.mjs +49 -1
- package/dist/deepkit/src/transpile.cjs +29 -1
- package/dist/deepkit/src/transpile.mjs +27 -1
- package/dist/deepkit/src/utilities.cjs +66 -1
- package/dist/deepkit/src/utilities.mjs +65 -1
- package/dist/deepkit/src/vendor/type-compiler/index.cjs +38 -1
- package/dist/deepkit/src/vendor/type-compiler/index.mjs +19 -1
- package/dist/deepkit/src/vendor/type.cjs +20 -1
- package/dist/deepkit/src/vendor/type.mjs +11 -1
- package/dist/index.cjs +104 -1
- package/dist/index.mjs +98 -1
- package/dist/plugin-alloy/src/core/components/output.cjs +45 -1
- package/dist/plugin-alloy/src/core/components/output.mjs +44 -1
- package/dist/plugin-alloy/src/core/contexts/context.cjs +11 -1
- package/dist/plugin-alloy/src/core/contexts/context.mjs +10 -1
- package/dist/plugin-alloy/src/index.cjs +93 -1
- package/dist/plugin-alloy/src/index.mjs +91 -1
- package/dist/plugin-automd/src/index.cjs +101 -1
- package/dist/plugin-automd/src/index.mjs +98 -1
- package/dist/plugin-babel/src/helpers/ast-utils.cjs +10 -1
- package/dist/plugin-babel/src/helpers/ast-utils.mjs +9 -1
- package/dist/plugin-babel/src/helpers/create-plugin.cjs +41 -1
- package/dist/plugin-babel/src/helpers/create-plugin.mjs +39 -1
- package/dist/plugin-babel/src/helpers/filters.cjs +23 -1
- package/dist/plugin-babel/src/helpers/filters.mjs +21 -1
- package/dist/plugin-babel/src/helpers/index.cjs +5 -1
- package/dist/plugin-babel/src/helpers/index.mjs +7 -1
- package/dist/plugin-babel/src/helpers/module-helpers.cjs +38 -1
- package/dist/plugin-babel/src/helpers/module-helpers.mjs +35 -1
- package/dist/plugin-babel/src/helpers/options.cjs +50 -1
- package/dist/plugin-babel/src/helpers/options.mjs +47 -1
- package/dist/plugin-babel/src/index.cjs +91 -1
- package/dist/plugin-babel/src/index.mjs +89 -1
- package/dist/plugin-env/src/babel/index.cjs +1 -1
- package/dist/plugin-env/src/babel/index.mjs +3 -1
- package/dist/plugin-env/src/babel/plugin.cjs +120 -4
- package/dist/plugin-env/src/babel/plugin.mjs +118 -4
- package/dist/plugin-env/src/components/docs.cjs +9 -1
- package/dist/plugin-env/src/components/docs.mjs +11 -1
- package/dist/plugin-env/src/components/env.cjs +432 -11
- package/dist/plugin-env/src/components/env.mjs +430 -9
- package/dist/plugin-env/src/components/index.cjs +2 -1
- package/dist/plugin-env/src/components/index.mjs +4 -1
- package/dist/plugin-env/src/helpers/automd-generator.cjs +22 -1
- package/dist/plugin-env/src/helpers/automd-generator.mjs +21 -1
- package/dist/plugin-env/src/helpers/create-reflection-resource.cjs +55 -1
- package/dist/plugin-env/src/helpers/create-reflection-resource.mjs +54 -1
- package/dist/plugin-env/src/helpers/index.cjs +6 -1
- package/dist/plugin-env/src/helpers/index.mjs +8 -1
- package/dist/plugin-env/src/helpers/load.cjs +83 -1
- package/dist/plugin-env/src/helpers/load.mjs +80 -1
- package/dist/plugin-env/src/helpers/persistence.cjs +200 -1
- package/dist/plugin-env/src/helpers/persistence.mjs +189 -1
- package/dist/plugin-env/src/helpers/reflect.cjs +111 -1
- package/dist/plugin-env/src/helpers/reflect.mjs +103 -1
- package/dist/plugin-env/src/helpers/source-file-env.cjs +24 -1
- package/dist/plugin-env/src/helpers/source-file-env.mjs +23 -1
- package/dist/plugin-env/src/helpers/template-helpers.cjs +2 -1
- package/dist/plugin-env/src/helpers/template-helpers.mjs +4 -1
- package/dist/plugin-env/src/index.cjs +170 -5
- package/dist/plugin-env/src/index.mjs +168 -5
- package/dist/powerlines/src/lib/build/esbuild.cjs +102 -14
- package/dist/powerlines/src/lib/build/esbuild.mjs +100 -14
- package/dist/powerlines/src/lib/entry.cjs +12 -1
- package/dist/powerlines/src/lib/entry.mjs +14 -1
- package/dist/powerlines/src/lib/logger.cjs +41 -1
- package/dist/powerlines/src/lib/logger.mjs +39 -1
- package/dist/powerlines/src/lib/typescript/tsconfig.cjs +38 -1
- package/dist/powerlines/src/lib/typescript/tsconfig.mjs +35 -1
- package/dist/powerlines/src/lib/utilities/bundle.cjs +35 -1
- package/dist/powerlines/src/lib/utilities/bundle.mjs +34 -1
- package/dist/powerlines/src/lib/utilities/resolve.cjs +30 -1
- package/dist/powerlines/src/lib/utilities/resolve.mjs +29 -1
- package/dist/powerlines/src/plugin-utils/paths.cjs +1 -1
- package/dist/powerlines/src/plugin-utils/paths.mjs +3 -1
- package/dist/powerlines/src/types/build.d.mts +2 -0
- package/dist/powerlines/src/types/context.d.cts +27 -3
- package/dist/powerlines/src/types/context.d.mts +27 -3
- package/dist/powerlines/src/types/resolved.d.mts +1 -0
- package/dist/types/index.mjs +1 -1
- package/dist/types/plugin.mjs +1 -1
- package/dist/types/runtime.mjs +1 -1
- package/package.json +11 -11
|
@@ -1 +1,35 @@
|
|
|
1
|
-
const
|
|
1
|
+
const require_rolldown_runtime = require('../../../../_virtual/rolldown_runtime.cjs');
|
|
2
|
+
const require_esbuild = require('../build/esbuild.cjs');
|
|
3
|
+
let __storm_software_config_tools_types = require("@storm-software/config-tools/types");
|
|
4
|
+
let esbuild = require("esbuild");
|
|
5
|
+
|
|
6
|
+
//#region ../powerlines/src/lib/utilities/bundle.ts
|
|
7
|
+
/**
|
|
8
|
+
* Bundle a type definition to a module.
|
|
9
|
+
*
|
|
10
|
+
* @param context - The context object containing the environment paths.
|
|
11
|
+
* @param file - The file path to bundle.
|
|
12
|
+
* @param overrides - Optional overrides for the ESBuild configuration.
|
|
13
|
+
* @returns A promise that resolves to the bundled module.
|
|
14
|
+
*/
|
|
15
|
+
async function bundle(context, file, overrides = {}) {
|
|
16
|
+
const path = await context.fs.resolve(file);
|
|
17
|
+
if (!path || !context.fs.existsSync(path)) throw new Error(`Module not found: "${file}". Please check the path and try again.`);
|
|
18
|
+
const result = await (0, esbuild.build)({
|
|
19
|
+
...require_esbuild.extractESBuildConfig(context),
|
|
20
|
+
entryPoints: [path],
|
|
21
|
+
write: false,
|
|
22
|
+
sourcemap: false,
|
|
23
|
+
splitting: false,
|
|
24
|
+
treeShaking: false,
|
|
25
|
+
bundle: true,
|
|
26
|
+
...overrides
|
|
27
|
+
});
|
|
28
|
+
if (result.errors.length > 0) throw new Error(`Failed to transpile ${file}: ${result.errors.map((error) => error.text).join(", ")}`);
|
|
29
|
+
if (result.warnings.length > 0) context.log(__storm_software_config_tools_types.LogLevelLabel.WARN, `Warnings while transpiling ${file}: ${result.warnings.map((warning) => warning.text).join(", ")}`);
|
|
30
|
+
if (!result.outputFiles || result.outputFiles.filter(Boolean).length === 0) throw new Error(`No output files generated for ${file}. Please check the configuration and try again.`);
|
|
31
|
+
return result.outputFiles.filter(Boolean)[0];
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
//#endregion
|
|
35
|
+
exports.bundle = bundle;
|
|
@@ -1 +1,34 @@
|
|
|
1
|
-
import{extractESBuildConfig
|
|
1
|
+
import { extractESBuildConfig } from "../build/esbuild.mjs";
|
|
2
|
+
import { LogLevelLabel } from "@storm-software/config-tools/types";
|
|
3
|
+
import { build } from "esbuild";
|
|
4
|
+
|
|
5
|
+
//#region ../powerlines/src/lib/utilities/bundle.ts
|
|
6
|
+
/**
|
|
7
|
+
* Bundle a type definition to a module.
|
|
8
|
+
*
|
|
9
|
+
* @param context - The context object containing the environment paths.
|
|
10
|
+
* @param file - The file path to bundle.
|
|
11
|
+
* @param overrides - Optional overrides for the ESBuild configuration.
|
|
12
|
+
* @returns A promise that resolves to the bundled module.
|
|
13
|
+
*/
|
|
14
|
+
async function bundle(context, file, overrides = {}) {
|
|
15
|
+
const path = await context.fs.resolve(file);
|
|
16
|
+
if (!path || !context.fs.existsSync(path)) throw new Error(`Module not found: "${file}". Please check the path and try again.`);
|
|
17
|
+
const result = await build({
|
|
18
|
+
...extractESBuildConfig(context),
|
|
19
|
+
entryPoints: [path],
|
|
20
|
+
write: false,
|
|
21
|
+
sourcemap: false,
|
|
22
|
+
splitting: false,
|
|
23
|
+
treeShaking: false,
|
|
24
|
+
bundle: true,
|
|
25
|
+
...overrides
|
|
26
|
+
});
|
|
27
|
+
if (result.errors.length > 0) throw new Error(`Failed to transpile ${file}: ${result.errors.map((error) => error.text).join(", ")}`);
|
|
28
|
+
if (result.warnings.length > 0) context.log(LogLevelLabel.WARN, `Warnings while transpiling ${file}: ${result.warnings.map((warning) => warning.text).join(", ")}`);
|
|
29
|
+
if (!result.outputFiles || result.outputFiles.filter(Boolean).length === 0) throw new Error(`No output files generated for ${file}. Please check the configuration and try again.`);
|
|
30
|
+
return result.outputFiles.filter(Boolean)[0];
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
//#endregion
|
|
34
|
+
export { bundle };
|
|
@@ -1 +1,30 @@
|
|
|
1
|
-
const
|
|
1
|
+
const require_rolldown_runtime = require('../../../../_virtual/rolldown_runtime.cjs');
|
|
2
|
+
const require_bundle = require('./bundle.cjs');
|
|
3
|
+
let __stryke_type_checks_is_set_string = require("@stryke/type-checks/is-set-string");
|
|
4
|
+
let __stryke_convert_parse_type_definition = require("@stryke/convert/parse-type-definition");
|
|
5
|
+
|
|
6
|
+
//#region ../powerlines/src/lib/utilities/resolve.ts
|
|
7
|
+
/**
|
|
8
|
+
* Compiles a type definition to a module.
|
|
9
|
+
*
|
|
10
|
+
* @param context - The context object containing the environment paths.
|
|
11
|
+
* @param type - The type definition to compile. This can be either a string or a {@link TypeDefinition} object.
|
|
12
|
+
* @param overrides - Optional overrides for the ESBuild configuration.
|
|
13
|
+
* @returns A promise that resolves to the compiled module.
|
|
14
|
+
*/
|
|
15
|
+
async function resolve(context, type, overrides = {}) {
|
|
16
|
+
let typeDefinition;
|
|
17
|
+
if ((0, __stryke_type_checks_is_set_string.isSetString)(type)) typeDefinition = (0, __stryke_convert_parse_type_definition.parseTypeDefinition)(type);
|
|
18
|
+
else typeDefinition = type;
|
|
19
|
+
const result = await require_bundle.bundle(context, typeDefinition.file, overrides);
|
|
20
|
+
const resolved = await context.resolver.evalModule(result.text, {
|
|
21
|
+
filename: result.path,
|
|
22
|
+
forceTranspile: true
|
|
23
|
+
});
|
|
24
|
+
let exportName = typeDefinition.name;
|
|
25
|
+
if (!exportName) exportName = "default";
|
|
26
|
+
return resolved[exportName] ?? resolved[`__Ω${exportName}`];
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
//#endregion
|
|
30
|
+
exports.resolve = resolve;
|
|
@@ -1 +1,29 @@
|
|
|
1
|
-
import{bundle
|
|
1
|
+
import { bundle } from "./bundle.mjs";
|
|
2
|
+
import { isSetString } from "@stryke/type-checks/is-set-string";
|
|
3
|
+
import { parseTypeDefinition } from "@stryke/convert/parse-type-definition";
|
|
4
|
+
|
|
5
|
+
//#region ../powerlines/src/lib/utilities/resolve.ts
|
|
6
|
+
/**
|
|
7
|
+
* Compiles a type definition to a module.
|
|
8
|
+
*
|
|
9
|
+
* @param context - The context object containing the environment paths.
|
|
10
|
+
* @param type - The type definition to compile. This can be either a string or a {@link TypeDefinition} object.
|
|
11
|
+
* @param overrides - Optional overrides for the ESBuild configuration.
|
|
12
|
+
* @returns A promise that resolves to the compiled module.
|
|
13
|
+
*/
|
|
14
|
+
async function resolve(context, type, overrides = {}) {
|
|
15
|
+
let typeDefinition;
|
|
16
|
+
if (isSetString(type)) typeDefinition = parseTypeDefinition(type);
|
|
17
|
+
else typeDefinition = type;
|
|
18
|
+
const result = await bundle(context, typeDefinition.file, overrides);
|
|
19
|
+
const resolved = await context.resolver.evalModule(result.text, {
|
|
20
|
+
filename: result.path,
|
|
21
|
+
forceTranspile: true
|
|
22
|
+
});
|
|
23
|
+
let exportName = typeDefinition.name;
|
|
24
|
+
if (!exportName) exportName = "default";
|
|
25
|
+
return resolved[exportName] ?? resolved[`__Ω${exportName}`];
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
//#endregion
|
|
29
|
+
export { resolve };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
let
|
|
1
|
+
let __stryke_path_replace = require("@stryke/path/replace");
|
|
@@ -89,10 +89,18 @@ interface ParseOptions extends ParserOptions {
|
|
|
89
89
|
*/
|
|
90
90
|
allowReturnOutsideFunction?: boolean;
|
|
91
91
|
}
|
|
92
|
+
interface EmitOptions extends WriteOptions {
|
|
93
|
+
/**
|
|
94
|
+
* If true, will emit the file using {@link UnpluginBuildContext.emitFile | the bundler's emit function}.
|
|
95
|
+
*/
|
|
96
|
+
emitWithBundler?: boolean;
|
|
97
|
+
needsCodeReference?: Parameters<UnpluginBuildContext["emitFile"]>[0]["needsCodeReference"];
|
|
98
|
+
originalFileName?: Parameters<UnpluginBuildContext["emitFile"]>[0]["originalFileName"];
|
|
99
|
+
}
|
|
92
100
|
/**
|
|
93
101
|
* Options for emitting entry virtual files
|
|
94
102
|
*/
|
|
95
|
-
type EmitEntryOptions =
|
|
103
|
+
type EmitEntryOptions = EmitOptions & Omit<ResolvedEntryTypeDefinition, "file">;
|
|
96
104
|
/**
|
|
97
105
|
* The unresolved Powerlines context.
|
|
98
106
|
*
|
|
@@ -303,6 +311,22 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
303
311
|
* The Powerlines builtin virtual files
|
|
304
312
|
*/
|
|
305
313
|
getBuiltins: () => Promise<VirtualFile[]>;
|
|
314
|
+
/**
|
|
315
|
+
* Resolves a file and writes it to the VFS if it does not already exist
|
|
316
|
+
*
|
|
317
|
+
* @param code - The source code of the file
|
|
318
|
+
* @param path - The path to write the file to
|
|
319
|
+
* @param options - Additional options for writing the file
|
|
320
|
+
*/
|
|
321
|
+
emit: (code: string, path: string, options?: EmitOptions) => Promise<void>;
|
|
322
|
+
/**
|
|
323
|
+
* Synchronously resolves a file and writes it to the VFS if it does not already exist
|
|
324
|
+
*
|
|
325
|
+
* @param code - The source code of the file
|
|
326
|
+
* @param path - The path to write the file to
|
|
327
|
+
* @param options - Additional options for writing the file
|
|
328
|
+
*/
|
|
329
|
+
emitSync: (code: string, path: string, options?: EmitOptions) => void;
|
|
306
330
|
/**
|
|
307
331
|
* Resolves a builtin virtual file and writes it to the VFS if it does not already exist
|
|
308
332
|
*
|
|
@@ -311,7 +335,7 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
311
335
|
* @param path - An optional path to write the builtin file to
|
|
312
336
|
* @param options - Additional options for writing the builtin file
|
|
313
337
|
*/
|
|
314
|
-
emitBuiltin: (code: string, id: string, path?: string, options?:
|
|
338
|
+
emitBuiltin: (code: string, id: string, path?: string, options?: EmitOptions) => Promise<void>;
|
|
315
339
|
/**
|
|
316
340
|
* Synchronously resolves a builtin virtual file and writes it to the VFS if it does not already exist
|
|
317
341
|
*
|
|
@@ -320,7 +344,7 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
320
344
|
* @param path - An optional path to write the builtin file to
|
|
321
345
|
* @param options - Additional options for writing the builtin file
|
|
322
346
|
*/
|
|
323
|
-
emitBuiltinSync: (code: string, id: string, path?: string, options?:
|
|
347
|
+
emitBuiltinSync: (code: string, id: string, path?: string, options?: EmitOptions) => void;
|
|
324
348
|
/**
|
|
325
349
|
* Resolves a entry virtual file and writes it to the VFS if it does not already exist
|
|
326
350
|
*
|
|
@@ -91,10 +91,18 @@ interface ParseOptions extends ParserOptions {
|
|
|
91
91
|
*/
|
|
92
92
|
allowReturnOutsideFunction?: boolean;
|
|
93
93
|
}
|
|
94
|
+
interface EmitOptions extends WriteOptions {
|
|
95
|
+
/**
|
|
96
|
+
* If true, will emit the file using {@link UnpluginBuildContext.emitFile | the bundler's emit function}.
|
|
97
|
+
*/
|
|
98
|
+
emitWithBundler?: boolean;
|
|
99
|
+
needsCodeReference?: Parameters<UnpluginBuildContext["emitFile"]>[0]["needsCodeReference"];
|
|
100
|
+
originalFileName?: Parameters<UnpluginBuildContext["emitFile"]>[0]["originalFileName"];
|
|
101
|
+
}
|
|
94
102
|
/**
|
|
95
103
|
* Options for emitting entry virtual files
|
|
96
104
|
*/
|
|
97
|
-
type EmitEntryOptions =
|
|
105
|
+
type EmitEntryOptions = EmitOptions & Omit<ResolvedEntryTypeDefinition, "file">;
|
|
98
106
|
/**
|
|
99
107
|
* The unresolved Powerlines context.
|
|
100
108
|
*
|
|
@@ -305,6 +313,22 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
305
313
|
* The Powerlines builtin virtual files
|
|
306
314
|
*/
|
|
307
315
|
getBuiltins: () => Promise<VirtualFile[]>;
|
|
316
|
+
/**
|
|
317
|
+
* Resolves a file and writes it to the VFS if it does not already exist
|
|
318
|
+
*
|
|
319
|
+
* @param code - The source code of the file
|
|
320
|
+
* @param path - The path to write the file to
|
|
321
|
+
* @param options - Additional options for writing the file
|
|
322
|
+
*/
|
|
323
|
+
emit: (code: string, path: string, options?: EmitOptions) => Promise<void>;
|
|
324
|
+
/**
|
|
325
|
+
* Synchronously resolves a file and writes it to the VFS if it does not already exist
|
|
326
|
+
*
|
|
327
|
+
* @param code - The source code of the file
|
|
328
|
+
* @param path - The path to write the file to
|
|
329
|
+
* @param options - Additional options for writing the file
|
|
330
|
+
*/
|
|
331
|
+
emitSync: (code: string, path: string, options?: EmitOptions) => void;
|
|
308
332
|
/**
|
|
309
333
|
* Resolves a builtin virtual file and writes it to the VFS if it does not already exist
|
|
310
334
|
*
|
|
@@ -313,7 +337,7 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
313
337
|
* @param path - An optional path to write the builtin file to
|
|
314
338
|
* @param options - Additional options for writing the builtin file
|
|
315
339
|
*/
|
|
316
|
-
emitBuiltin: (code: string, id: string, path?: string, options?:
|
|
340
|
+
emitBuiltin: (code: string, id: string, path?: string, options?: EmitOptions) => Promise<void>;
|
|
317
341
|
/**
|
|
318
342
|
* Synchronously resolves a builtin virtual file and writes it to the VFS if it does not already exist
|
|
319
343
|
*
|
|
@@ -322,7 +346,7 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
322
346
|
* @param path - An optional path to write the builtin file to
|
|
323
347
|
* @param options - Additional options for writing the builtin file
|
|
324
348
|
*/
|
|
325
|
-
emitBuiltinSync: (code: string, id: string, path?: string, options?:
|
|
349
|
+
emitBuiltinSync: (code: string, id: string, path?: string, options?: EmitOptions) => void;
|
|
326
350
|
/**
|
|
327
351
|
* Resolves a entry virtual file and writes it to the VFS if it does not already exist
|
|
328
352
|
*
|
package/dist/types/index.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{};
|
|
1
|
+
export { };
|
package/dist/types/plugin.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{};
|
|
1
|
+
export { };
|
package/dist/types/runtime.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{};
|
|
1
|
+
export { };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-react",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.124",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin for building a React application.",
|
|
6
6
|
"repository": {
|
|
@@ -140,18 +140,18 @@
|
|
|
140
140
|
"@alloy-js/json": "^0.22.0",
|
|
141
141
|
"@alloy-js/markdown": "^0.22.0",
|
|
142
142
|
"@alloy-js/typescript": "^0.22.0",
|
|
143
|
-
"@powerlines/plugin-alloy": "^0.17.
|
|
144
|
-
"@powerlines/plugin-babel": "^0.12.
|
|
145
|
-
"@powerlines/plugin-env": "^0.14.
|
|
146
|
-
"@storm-software/config-tools": "^1.188.
|
|
147
|
-
"@stryke/cli": "^0.12.
|
|
148
|
-
"@stryke/convert": "^0.6.
|
|
149
|
-
"@stryke/fs": "^0.33.
|
|
150
|
-
"@stryke/path": "^0.24.
|
|
143
|
+
"@powerlines/plugin-alloy": "^0.17.2",
|
|
144
|
+
"@powerlines/plugin-babel": "^0.12.128",
|
|
145
|
+
"@powerlines/plugin-env": "^0.14.23",
|
|
146
|
+
"@storm-software/config-tools": "^1.188.75",
|
|
147
|
+
"@stryke/cli": "^0.12.37",
|
|
148
|
+
"@stryke/convert": "^0.6.30",
|
|
149
|
+
"@stryke/fs": "^0.33.27",
|
|
150
|
+
"@stryke/path": "^0.24.1",
|
|
151
151
|
"@vitejs/plugin-react": "^5.1.2",
|
|
152
152
|
"babel-plugin-react-compiler": "^1.0.0",
|
|
153
153
|
"defu": "^6.1.4",
|
|
154
|
-
"powerlines": "^0.36.
|
|
154
|
+
"powerlines": "^0.36.24"
|
|
155
155
|
},
|
|
156
156
|
"devDependencies": {
|
|
157
157
|
"@babel/core": "^7.28.5",
|
|
@@ -162,5 +162,5 @@
|
|
|
162
162
|
"react-dom": "^19.2.3"
|
|
163
163
|
},
|
|
164
164
|
"publishConfig": { "access": "public" },
|
|
165
|
-
"gitHead": "
|
|
165
|
+
"gitHead": "4b695d4b3476fd9dd79521f92258d52dab2b8d72"
|
|
166
166
|
}
|