@powerlines/plugin-nodejs 0.1.66 → 0.1.67
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 → packages/plugin-nodejs/src/components}/env.cjs +1 -1
- package/dist/{components → packages/plugin-nodejs/src/components}/env.d.cts +1 -1
- package/dist/{components → packages/plugin-nodejs/src/components}/env.d.mts +1 -1
- package/dist/packages/plugin-nodejs/src/components/index.cjs +3 -0
- package/dist/{types → packages/plugin-nodejs/src/types}/plugin.d.cts +2 -2
- package/dist/{types → packages/plugin-nodejs/src/types}/plugin.d.mts +2 -2
- package/dist/{index.cjs → src/index.cjs} +5 -5
- package/dist/{index.d.cts → src/index.d.cts} +5 -5
- package/dist/{index.d.mts → src/index.d.mts} +5 -5
- package/dist/{index.mjs → src/index.mjs} +2 -2
- package/package.json +7 -7
- package/dist/components/index.cjs +0 -3
- /package/dist/{components → packages/plugin-nodejs/src/components}/env.mjs +0 -0
- /package/dist/{components → packages/plugin-nodejs/src/components}/index.d.cts +0 -0
- /package/dist/{components → packages/plugin-nodejs/src/components}/index.d.mts +0 -0
- /package/dist/{components → packages/plugin-nodejs/src/components}/index.mjs +0 -0
- /package/dist/{types → packages/plugin-nodejs/src/types}/index.cjs +0 -0
- /package/dist/{types → packages/plugin-nodejs/src/types}/index.d.cts +0 -0
- /package/dist/{types → packages/plugin-nodejs/src/types}/index.d.mts +0 -0
- /package/dist/{types → packages/plugin-nodejs/src/types}/index.mjs +0 -0
- /package/dist/{types → packages/plugin-nodejs/src/types}/plugin.cjs +0 -0
- /package/dist/{types → packages/plugin-nodejs/src/types}/plugin.mjs +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const require_rolldown_runtime = require('
|
|
1
|
+
const require_rolldown_runtime = require('../../../../_virtual/rolldown_runtime.cjs');
|
|
2
2
|
let __alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
|
|
3
3
|
let __alloy_js_core = require("@alloy-js/core");
|
|
4
4
|
let __alloy_js_typescript = require("@alloy-js/typescript");
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BabelPluginOptions } from "
|
|
2
|
-
import { EnvPluginContext, EnvPluginOptions, EnvPluginResolvedConfig, EnvPluginUserConfig } from "
|
|
1
|
+
import { BabelPluginOptions } from "../../../../plugin-babel/src/types/plugin.cjs";
|
|
2
|
+
import { EnvPluginContext, EnvPluginOptions, EnvPluginResolvedConfig, EnvPluginUserConfig } from "../../../../plugin-env/src/types/plugin.cjs";
|
|
3
3
|
|
|
4
4
|
//#region src/types/plugin.d.ts
|
|
5
5
|
interface NodeJsPluginOptions {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BabelPluginOptions } from "
|
|
2
|
-
import { EnvPluginContext, EnvPluginOptions, EnvPluginResolvedConfig, EnvPluginUserConfig } from "
|
|
1
|
+
import { BabelPluginOptions } from "../../../../plugin-babel/src/types/plugin.mjs";
|
|
2
|
+
import { EnvPluginContext, EnvPluginOptions, EnvPluginResolvedConfig, EnvPluginUserConfig } from "../../../../plugin-env/src/types/plugin.mjs";
|
|
3
3
|
|
|
4
4
|
//#region src/types/plugin.d.ts
|
|
5
5
|
interface NodeJsPluginOptions {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
-
const require_rolldown_runtime = require('
|
|
3
|
-
const
|
|
4
|
-
require('
|
|
2
|
+
const require_rolldown_runtime = require('../_virtual/rolldown_runtime.cjs');
|
|
3
|
+
const require_packages_plugin_nodejs_src_components_env = require('../packages/plugin-nodejs/src/components/env.cjs');
|
|
4
|
+
require('../packages/plugin-nodejs/src/components/index.cjs');
|
|
5
5
|
let __alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
|
|
6
6
|
let __powerlines_plugin_babel = require("@powerlines/plugin-babel");
|
|
7
7
|
__powerlines_plugin_babel = require_rolldown_runtime.__toESM(__powerlines_plugin_babel);
|
|
@@ -27,7 +27,7 @@ const plugin = (options = {}) => {
|
|
|
27
27
|
},
|
|
28
28
|
async prepare() {
|
|
29
29
|
const _self$ = this;
|
|
30
|
-
return this.render((0, __alloy_js_core_jsx_runtime.createComponent)(
|
|
30
|
+
return this.render((0, __alloy_js_core_jsx_runtime.createComponent)(require_packages_plugin_nodejs_src_components_env.NodeJsEnvBuiltin, { get defaultConfig() {
|
|
31
31
|
return _self$.config.env.defaultConfig;
|
|
32
32
|
} }));
|
|
33
33
|
}
|
|
@@ -37,6 +37,6 @@ const plugin = (options = {}) => {
|
|
|
37
37
|
var src_default = plugin;
|
|
38
38
|
|
|
39
39
|
//#endregion
|
|
40
|
-
exports.NodeJsEnvBuiltin =
|
|
40
|
+
exports.NodeJsEnvBuiltin = require_packages_plugin_nodejs_src_components_env.NodeJsEnvBuiltin;
|
|
41
41
|
exports.default = src_default;
|
|
42
42
|
exports.plugin = plugin;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Plugin } from "
|
|
2
|
-
import { NodeJsEnvBuiltin } from "
|
|
3
|
-
import "
|
|
4
|
-
import { NodeJsPluginContext, NodeJsPluginOptions, NodeJsPluginResolvedConfig, NodeJsPluginUserConfig, __ΩNodeJsPluginContext, __ΩNodeJsPluginOptions, __ΩNodeJsPluginResolvedConfig, __ΩNodeJsPluginUserConfig } from "
|
|
5
|
-
import "
|
|
1
|
+
import { Plugin } from "../powerlines/src/types/plugin.cjs";
|
|
2
|
+
import { NodeJsEnvBuiltin } from "../packages/plugin-nodejs/src/components/env.cjs";
|
|
3
|
+
import "../packages/plugin-nodejs/src/components/index.cjs";
|
|
4
|
+
import { NodeJsPluginContext, NodeJsPluginOptions, NodeJsPluginResolvedConfig, NodeJsPluginUserConfig, __ΩNodeJsPluginContext, __ΩNodeJsPluginOptions, __ΩNodeJsPluginResolvedConfig, __ΩNodeJsPluginUserConfig } from "../packages/plugin-nodejs/src/types/plugin.cjs";
|
|
5
|
+
import "../packages/plugin-nodejs/src/types/index.cjs";
|
|
6
6
|
|
|
7
7
|
//#region src/index.d.ts
|
|
8
8
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Plugin } from "
|
|
2
|
-
import { NodeJsEnvBuiltin } from "
|
|
3
|
-
import "
|
|
4
|
-
import { NodeJsPluginContext, NodeJsPluginOptions, NodeJsPluginResolvedConfig, NodeJsPluginUserConfig, __ΩNodeJsPluginContext, __ΩNodeJsPluginOptions, __ΩNodeJsPluginResolvedConfig, __ΩNodeJsPluginUserConfig } from "
|
|
5
|
-
import "
|
|
1
|
+
import { Plugin } from "../powerlines/src/types/plugin.mjs";
|
|
2
|
+
import { NodeJsEnvBuiltin } from "../packages/plugin-nodejs/src/components/env.mjs";
|
|
3
|
+
import "../packages/plugin-nodejs/src/components/index.mjs";
|
|
4
|
+
import { NodeJsPluginContext, NodeJsPluginOptions, NodeJsPluginResolvedConfig, NodeJsPluginUserConfig, __ΩNodeJsPluginContext, __ΩNodeJsPluginOptions, __ΩNodeJsPluginResolvedConfig, __ΩNodeJsPluginUserConfig } from "../packages/plugin-nodejs/src/types/plugin.mjs";
|
|
5
|
+
import "../packages/plugin-nodejs/src/types/index.mjs";
|
|
6
6
|
|
|
7
7
|
//#region src/index.d.ts
|
|
8
8
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { NodeJsEnvBuiltin } from "
|
|
2
|
-
import "
|
|
1
|
+
import { NodeJsEnvBuiltin } from "../packages/plugin-nodejs/src/components/env.mjs";
|
|
2
|
+
import "../packages/plugin-nodejs/src/components/index.mjs";
|
|
3
3
|
import { createComponent } from "@alloy-js/core/jsx-runtime";
|
|
4
4
|
import babel from "@powerlines/plugin-babel";
|
|
5
5
|
import env from "@powerlines/plugin-env";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-nodejs",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.67",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin for building a Node.js application.",
|
|
6
6
|
"repository": {
|
|
@@ -133,19 +133,19 @@
|
|
|
133
133
|
"dependencies": {
|
|
134
134
|
"@alloy-js/core": "^0.22.0",
|
|
135
135
|
"@alloy-js/typescript": "^0.22.0",
|
|
136
|
-
"@powerlines/plugin-alloy": "^0.18.
|
|
137
|
-
"@powerlines/plugin-babel": "^0.12.
|
|
138
|
-
"@powerlines/plugin-env": "^0.15.
|
|
136
|
+
"@powerlines/plugin-alloy": "^0.18.69",
|
|
137
|
+
"@powerlines/plugin-babel": "^0.12.189",
|
|
138
|
+
"@powerlines/plugin-env": "^0.15.72",
|
|
139
139
|
"@storm-software/config-tools": "^1.188.80",
|
|
140
140
|
"@stryke/string-format": "^0.13.3",
|
|
141
141
|
"defu": "^6.1.4",
|
|
142
|
-
"powerlines": "^0.37.
|
|
142
|
+
"powerlines": "^0.37.54"
|
|
143
143
|
},
|
|
144
144
|
"devDependencies": {
|
|
145
145
|
"@babel/core": "^7.28.6",
|
|
146
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
146
|
+
"@powerlines/plugin-plugin": "^0.12.132",
|
|
147
147
|
"@types/node": "^24.10.9"
|
|
148
148
|
},
|
|
149
149
|
"publishConfig": { "access": "public" },
|
|
150
|
-
"gitHead": "
|
|
150
|
+
"gitHead": "0030560b882e0e314b3085cc9607bc387e6bcba3"
|
|
151
151
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|