@powerlines/plugin-react 0.1.127 → 0.1.129
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/react-optimized.cjs +16 -10
- package/dist/components/react-optimized.d.cts +1 -1
- package/dist/components/react-optimized.d.mts +1 -1
- package/dist/components/react-optimized.mjs +14 -8
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/plugin-alloy/src/core/components/single-line-comment.cjs +22 -0
- package/dist/plugin-alloy/src/core/components/single-line-comment.mjs +21 -0
- package/dist/plugin-alloy/src/core/components/source-file.cjs +64 -0
- package/dist/plugin-alloy/src/core/components/source-file.d.cts +23 -0
- package/dist/plugin-alloy/src/core/components/source-file.d.mts +23 -0
- package/dist/plugin-alloy/src/core/components/source-file.mjs +62 -0
- package/dist/plugin-alloy/src/core/contexts/context.cjs +50 -1
- package/dist/plugin-alloy/src/core/contexts/context.mjs +46 -2
- package/dist/plugin-alloy/src/core/contexts/index.cjs +2 -0
- package/dist/plugin-alloy/src/core/contexts/index.mjs +4 -0
- package/dist/plugin-alloy/src/core/contexts/reflection.cjs +46 -0
- package/dist/plugin-alloy/src/core/contexts/reflection.mjs +42 -0
- package/dist/plugin-alloy/src/helpers/refkey.cjs +16 -0
- package/dist/plugin-alloy/src/helpers/refkey.mjs +15 -0
- package/dist/plugin-alloy/src/markdown/components/markdown-file.cjs +7 -0
- package/dist/plugin-alloy/src/markdown/components/markdown-file.mjs +9 -0
- package/dist/plugin-alloy/src/markdown/components/markdown-table.cjs +5 -0
- package/dist/plugin-alloy/src/markdown/components/markdown-table.mjs +7 -0
- package/dist/plugin-alloy/src/markdown/contexts/markdown-table.cjs +17 -0
- package/dist/plugin-alloy/src/markdown/contexts/markdown-table.mjs +17 -0
- package/dist/plugin-alloy/src/types/components.d.cts +19 -0
- package/dist/plugin-alloy/src/types/components.d.mts +19 -1
- package/dist/plugin-alloy/src/types/index.d.mts +1 -1
- package/dist/plugin-alloy/src/types/plugin.d.cts +1 -1
- package/dist/plugin-alloy/src/types/plugin.d.mts +1 -1
- package/dist/plugin-alloy/src/typescript/components/builtin-file.cjs +57 -0
- package/dist/plugin-alloy/src/typescript/components/builtin-file.d.cts +25 -0
- package/dist/plugin-alloy/src/typescript/components/builtin-file.d.mts +26 -0
- package/dist/plugin-alloy/src/typescript/components/builtin-file.mjs +56 -0
- package/dist/plugin-alloy/src/typescript/components/tsdoc-reflection.cjs +126 -0
- package/dist/plugin-alloy/src/typescript/components/tsdoc-reflection.mjs +124 -0
- package/dist/plugin-alloy/src/typescript/components/tsdoc.cjs +442 -0
- package/dist/plugin-alloy/src/typescript/components/tsdoc.d.cts +27 -0
- package/dist/plugin-alloy/src/typescript/components/tsdoc.d.mts +28 -0
- package/dist/plugin-alloy/src/typescript/components/tsdoc.mjs +433 -0
- package/dist/plugin-alloy/src/typescript/components/typescript-file.cjs +193 -0
- package/dist/plugin-alloy/src/typescript/components/typescript-file.d.cts +14 -0
- package/dist/plugin-alloy/src/typescript/components/typescript-file.d.mts +15 -0
- package/dist/plugin-alloy/src/typescript/components/typescript-file.mjs +190 -0
- package/dist/plugin-alloy/src/typescript/components/typescript-interface.cjs +68 -0
- package/dist/plugin-alloy/src/typescript/components/typescript-interface.mjs +67 -0
- package/dist/plugin-alloy/src/typescript/components/typescript-object.cjs +124 -0
- package/dist/plugin-alloy/src/typescript/components/typescript-object.mjs +123 -0
- package/dist/plugin-automd/src/types/plugin.d.mts +1 -1
- package/dist/plugin-babel/src/types/plugin.d.cts +1 -1
- package/dist/plugin-babel/src/types/plugin.d.mts +1 -1
- package/dist/plugin-env/src/components/docs.cjs +3 -3
- package/dist/plugin-env/src/components/docs.mjs +3 -3
- package/dist/plugin-env/src/components/env.cjs +153 -40
- package/dist/plugin-env/src/components/env.mjs +128 -15
- package/dist/powerlines/src/lib/build/esbuild.mjs +1 -1
- package/dist/powerlines/src/lib/entry.mjs +1 -1
- package/dist/powerlines/src/types/babel.d.cts +1 -1
- package/dist/powerlines/src/types/babel.d.mts +1 -1
- package/dist/powerlines/src/types/build.d.mts +0 -2
- package/dist/powerlines/src/types/commands.d.cts +1 -1
- package/dist/powerlines/src/types/commands.d.mts +1 -1
- package/dist/powerlines/src/types/config.d.cts +5 -5
- package/dist/powerlines/src/types/config.d.mts +5 -5
- package/dist/powerlines/src/types/context.d.cts +1 -1
- package/dist/powerlines/src/types/context.d.mts +3 -3
- package/dist/powerlines/src/types/fs.d.cts +1 -1
- package/dist/powerlines/src/types/hooks.d.mts +2 -2
- package/dist/powerlines/src/types/plugin.d.cts +3 -3
- package/dist/powerlines/src/types/plugin.d.mts +3 -3
- package/dist/powerlines/src/types/resolved.d.cts +2 -2
- package/dist/powerlines/src/types/resolved.d.mts +2 -3
- package/package.json +6 -6
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { UnpluginBuildVariant } from "./build.cjs";
|
|
2
|
+
import { CommandType } from "./commands.cjs";
|
|
3
|
+
import { BuildPluginContext, PluginContext, UnresolvedContext } from "./context.cjs";
|
|
2
4
|
import { EnvironmentConfig, PluginConfig } from "./config.cjs";
|
|
3
5
|
import { EnvironmentResolvedConfig, ResolvedConfig } from "./resolved.cjs";
|
|
4
|
-
import { BuildPluginContext, PluginContext, UnresolvedContext } from "./context.cjs";
|
|
5
|
-
import { CommandType } from "./commands.cjs";
|
|
6
|
-
import { ArrayValues } from "@stryke/types/array";
|
|
7
6
|
import { FunctionLike, MaybePromise } from "@stryke/types/base";
|
|
8
7
|
import { ExternalIdResult, HookFilter, TransformResult, UnpluginOptions } from "unplugin";
|
|
8
|
+
import { ArrayValues } from "@stryke/types/array";
|
|
9
9
|
|
|
10
10
|
//#region ../powerlines/src/types/plugin.d.ts
|
|
11
11
|
interface PluginHookObject<THookFunction extends FunctionLike, TFilter extends keyof HookFilter = never> {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { UnpluginBuildVariant } from "./build.mjs";
|
|
2
|
+
import { CommandType } from "./commands.mjs";
|
|
3
|
+
import { BuildPluginContext, PluginContext, UnresolvedContext } from "./context.mjs";
|
|
2
4
|
import { EnvironmentConfig, PluginConfig } from "./config.mjs";
|
|
3
5
|
import { EnvironmentResolvedConfig, ResolvedConfig } from "./resolved.mjs";
|
|
4
|
-
import { BuildPluginContext, PluginContext, UnresolvedContext } from "./context.mjs";
|
|
5
|
-
import { CommandType } from "./commands.mjs";
|
|
6
|
-
import { ArrayValues } from "@stryke/types/array";
|
|
7
6
|
import { FunctionLike, MaybePromise } from "@stryke/types/base";
|
|
8
7
|
import { ExternalIdResult, HookFilter, TransformResult, UnpluginOptions } from "unplugin";
|
|
8
|
+
import { ArrayValues } from "@stryke/types/array";
|
|
9
9
|
|
|
10
10
|
//#region ../powerlines/src/types/plugin.d.ts
|
|
11
11
|
interface PluginHookObject<THookFunction extends FunctionLike, TFilter extends keyof HookFilter = never> {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { BabelUserConfig, EnvironmentConfig, InlineConfig, OutputConfig, UserConfig } from "./config.cjs";
|
|
2
2
|
import { NonUndefined } from "@stryke/types/base";
|
|
3
|
-
import { ResolvedPreviewOptions } from "vite";
|
|
4
|
-
import { TypeDefinition } from "@stryke/types/configuration";
|
|
5
3
|
import { AssetGlob } from "@stryke/types/file";
|
|
4
|
+
import { TypeDefinition } from "@stryke/types/configuration";
|
|
5
|
+
import { ResolvedPreviewOptions } from "vite";
|
|
6
6
|
|
|
7
7
|
//#region ../powerlines/src/types/resolved.d.ts
|
|
8
8
|
interface ResolvedEntryTypeDefinition extends TypeDefinition {
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import "./build.mjs";
|
|
2
1
|
import { BabelUserConfig, EnvironmentConfig, InlineConfig, OutputConfig, UserConfig } from "./config.mjs";
|
|
3
2
|
import { NonUndefined } from "@stryke/types/base";
|
|
4
|
-
import { ResolvedPreviewOptions } from "vite";
|
|
5
|
-
import { TypeDefinition } from "@stryke/types/configuration";
|
|
6
3
|
import { AssetGlob } from "@stryke/types/file";
|
|
4
|
+
import { TypeDefinition } from "@stryke/types/configuration";
|
|
5
|
+
import { ResolvedPreviewOptions } from "vite";
|
|
7
6
|
|
|
8
7
|
//#region ../powerlines/src/types/resolved.d.ts
|
|
9
8
|
interface ResolvedEntryTypeDefinition extends TypeDefinition {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-react",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.129",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin for building a React application.",
|
|
6
6
|
"repository": {
|
|
@@ -140,9 +140,9 @@
|
|
|
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.
|
|
143
|
+
"@powerlines/plugin-alloy": "^0.17.6",
|
|
144
|
+
"@powerlines/plugin-babel": "^0.12.130",
|
|
145
|
+
"@powerlines/plugin-env": "^0.15.0",
|
|
146
146
|
"@storm-software/config-tools": "^1.188.75",
|
|
147
147
|
"@stryke/cli": "^0.12.37",
|
|
148
148
|
"@stryke/convert": "^0.6.30",
|
|
@@ -151,7 +151,7 @@
|
|
|
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.26"
|
|
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": "41988f81e266a609148fcac22a535e5f12bbeb5f"
|
|
166
166
|
}
|