@powerlines/plugin-unbuild 0.5.7 → 0.5.9
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/index-Do1d5FBD.d.cts +1313 -0
- package/dist/index-Do1d5FBD.d.ts +1313 -0
- package/dist/src/index.cjs +7 -0
- package/dist/src/index.d.cts +30 -0
- package/dist/src/index.d.ts +30 -0
- package/dist/src/index.js +7 -0
- package/dist/types/index.cjs +1 -0
- package/dist/types/index.d.cts +22 -0
- package/dist/types/index.d.ts +22 -0
- package/dist/types/index.js +1 -0
- package/dist/types/plugin.cjs +1 -0
- package/dist/types/plugin.d.cts +22 -0
- package/dist/types/plugin.d.ts +22 -0
- package/dist/types/plugin.js +0 -0
- package/package.json +9 -9
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
'use strict';Object.defineProperty(exports,'__esModule',{value:true});var unbuild=require('@storm-software/unbuild'),unbuild$1=require('powerlines/lib/build/unbuild'),types=require('./types');/*****************************************
|
|
2
|
+
*
|
|
3
|
+
* ⚡ Built by Storm Software
|
|
4
|
+
*
|
|
5
|
+
*****************************************/
|
|
6
|
+
|
|
7
|
+
var o=Object.defineProperty;var n=(i,t)=>o(i,"name",{value:t,configurable:true});const e=n((i={})=>({name:"unbuild",config(){return {output:{format:["esm"]},build:{...unbuild$1.DEFAULT_UNBUILD_CONFIG,...i,variant:"unbuild"}}},async build(){await unbuild.build(unbuild$1.extractUnbuildConfig(this));}}),"plugin");var O=e;exports.default=O;exports.plugin=e;Object.keys(types).forEach(function(k){if(k!=='default'&&!Object.prototype.hasOwnProperty.call(exports,k))Object.defineProperty(exports,k,{enumerable:true,get:function(){return types[k]}})});
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { U as UnbuildPluginContext, a as UnbuildPluginOptions, P as Plugin } from '../index-Do1d5FBD.cjs';
|
|
2
|
+
export { b as UnbuildPluginResolvedConfig } from '../index-Do1d5FBD.cjs';
|
|
3
|
+
import '@storm-software/unbuild/types';
|
|
4
|
+
import '@stryke/env/get-env-paths';
|
|
5
|
+
import '@stryke/types/package-json';
|
|
6
|
+
import 'jiti';
|
|
7
|
+
import 'oxc-parser';
|
|
8
|
+
import 'semver';
|
|
9
|
+
import 'unplugin';
|
|
10
|
+
import '@storm-software/build-tools/types';
|
|
11
|
+
import '@storm-software/config-tools/types';
|
|
12
|
+
import '@storm-software/config/types';
|
|
13
|
+
import '@stryke/types/base';
|
|
14
|
+
import '@stryke/types/configuration';
|
|
15
|
+
import '@stryke/types/file';
|
|
16
|
+
import 'vite';
|
|
17
|
+
import '@stryke/types/array';
|
|
18
|
+
import '@stryke/types/tsconfig';
|
|
19
|
+
import 'typescript';
|
|
20
|
+
import '@stryke/json/types';
|
|
21
|
+
import 'memfs';
|
|
22
|
+
import 'node:fs';
|
|
23
|
+
import 'unionfs';
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* A Powerlines plugin to build projects using Unbuild.
|
|
27
|
+
*/
|
|
28
|
+
declare const plugin: <TContext extends UnbuildPluginContext = UnbuildPluginContext>(options?: UnbuildPluginOptions) => Plugin<TContext>;
|
|
29
|
+
|
|
30
|
+
export { UnbuildPluginContext, UnbuildPluginOptions, plugin as default, plugin };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { U as UnbuildPluginContext, a as UnbuildPluginOptions, P as Plugin } from '../index-Do1d5FBD.js';
|
|
2
|
+
export { b as UnbuildPluginResolvedConfig } from '../index-Do1d5FBD.js';
|
|
3
|
+
import '@storm-software/unbuild/types';
|
|
4
|
+
import '@stryke/env/get-env-paths';
|
|
5
|
+
import '@stryke/types/package-json';
|
|
6
|
+
import 'jiti';
|
|
7
|
+
import 'oxc-parser';
|
|
8
|
+
import 'semver';
|
|
9
|
+
import 'unplugin';
|
|
10
|
+
import '@storm-software/build-tools/types';
|
|
11
|
+
import '@storm-software/config-tools/types';
|
|
12
|
+
import '@storm-software/config/types';
|
|
13
|
+
import '@stryke/types/base';
|
|
14
|
+
import '@stryke/types/configuration';
|
|
15
|
+
import '@stryke/types/file';
|
|
16
|
+
import 'vite';
|
|
17
|
+
import '@stryke/types/array';
|
|
18
|
+
import '@stryke/types/tsconfig';
|
|
19
|
+
import 'typescript';
|
|
20
|
+
import '@stryke/json/types';
|
|
21
|
+
import 'memfs';
|
|
22
|
+
import 'node:fs';
|
|
23
|
+
import 'unionfs';
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* A Powerlines plugin to build projects using Unbuild.
|
|
27
|
+
*/
|
|
28
|
+
declare const plugin: <TContext extends UnbuildPluginContext = UnbuildPluginContext>(options?: UnbuildPluginOptions) => Plugin<TContext>;
|
|
29
|
+
|
|
30
|
+
export { UnbuildPluginContext, UnbuildPluginOptions, plugin as default, plugin };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import {build}from'@storm-software/unbuild';import {extractUnbuildConfig,DEFAULT_UNBUILD_CONFIG}from'powerlines/lib/build/unbuild';export*from'./types';/*****************************************
|
|
2
|
+
*
|
|
3
|
+
* ⚡ Built by Storm Software
|
|
4
|
+
*
|
|
5
|
+
*****************************************/
|
|
6
|
+
|
|
7
|
+
var o=Object.defineProperty;var n=(i,t)=>o(i,"name",{value:t,configurable:true});const e=n((i={})=>({name:"unbuild",config(){return {output:{format:["esm"]},build:{...DEFAULT_UNBUILD_CONFIG,...i,variant:"unbuild"}}},async build(){await build(extractUnbuildConfig(this));}}),"plugin");var c=e;export{c as default,e as plugin};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
'use strict';var plugin=require('./plugin');Object.keys(plugin).forEach(function(k){if(k!=='default'&&!Object.prototype.hasOwnProperty.call(exports,k))Object.defineProperty(exports,k,{enumerable:true,get:function(){return plugin[k]}})});
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig } from '../index-Do1d5FBD.cjs';
|
|
2
|
+
import '@storm-software/unbuild/types';
|
|
3
|
+
import '@stryke/env/get-env-paths';
|
|
4
|
+
import '@stryke/types/package-json';
|
|
5
|
+
import 'jiti';
|
|
6
|
+
import 'oxc-parser';
|
|
7
|
+
import 'semver';
|
|
8
|
+
import 'unplugin';
|
|
9
|
+
import '@storm-software/build-tools/types';
|
|
10
|
+
import '@storm-software/config-tools/types';
|
|
11
|
+
import '@storm-software/config/types';
|
|
12
|
+
import '@stryke/types/base';
|
|
13
|
+
import '@stryke/types/configuration';
|
|
14
|
+
import '@stryke/types/file';
|
|
15
|
+
import 'vite';
|
|
16
|
+
import '@stryke/types/array';
|
|
17
|
+
import '@stryke/types/tsconfig';
|
|
18
|
+
import 'typescript';
|
|
19
|
+
import '@stryke/json/types';
|
|
20
|
+
import 'memfs';
|
|
21
|
+
import 'node:fs';
|
|
22
|
+
import 'unionfs';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig } from '../index-Do1d5FBD.js';
|
|
2
|
+
import '@storm-software/unbuild/types';
|
|
3
|
+
import '@stryke/env/get-env-paths';
|
|
4
|
+
import '@stryke/types/package-json';
|
|
5
|
+
import 'jiti';
|
|
6
|
+
import 'oxc-parser';
|
|
7
|
+
import 'semver';
|
|
8
|
+
import 'unplugin';
|
|
9
|
+
import '@storm-software/build-tools/types';
|
|
10
|
+
import '@storm-software/config-tools/types';
|
|
11
|
+
import '@storm-software/config/types';
|
|
12
|
+
import '@stryke/types/base';
|
|
13
|
+
import '@stryke/types/configuration';
|
|
14
|
+
import '@stryke/types/file';
|
|
15
|
+
import 'vite';
|
|
16
|
+
import '@stryke/types/array';
|
|
17
|
+
import '@stryke/types/tsconfig';
|
|
18
|
+
import 'typescript';
|
|
19
|
+
import '@stryke/json/types';
|
|
20
|
+
import 'memfs';
|
|
21
|
+
import 'node:fs';
|
|
22
|
+
import 'unionfs';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from'./plugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
'use strict';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig } from '../index-Do1d5FBD.cjs';
|
|
2
|
+
import '@storm-software/unbuild/types';
|
|
3
|
+
import '@stryke/env/get-env-paths';
|
|
4
|
+
import '@stryke/types/package-json';
|
|
5
|
+
import 'jiti';
|
|
6
|
+
import 'oxc-parser';
|
|
7
|
+
import 'semver';
|
|
8
|
+
import 'unplugin';
|
|
9
|
+
import '@storm-software/build-tools/types';
|
|
10
|
+
import '@storm-software/config-tools/types';
|
|
11
|
+
import '@storm-software/config/types';
|
|
12
|
+
import '@stryke/types/base';
|
|
13
|
+
import '@stryke/types/configuration';
|
|
14
|
+
import '@stryke/types/file';
|
|
15
|
+
import 'vite';
|
|
16
|
+
import '@stryke/types/array';
|
|
17
|
+
import '@stryke/types/tsconfig';
|
|
18
|
+
import 'typescript';
|
|
19
|
+
import '@stryke/json/types';
|
|
20
|
+
import 'memfs';
|
|
21
|
+
import 'node:fs';
|
|
22
|
+
import 'unionfs';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig } from '../index-Do1d5FBD.js';
|
|
2
|
+
import '@storm-software/unbuild/types';
|
|
3
|
+
import '@stryke/env/get-env-paths';
|
|
4
|
+
import '@stryke/types/package-json';
|
|
5
|
+
import 'jiti';
|
|
6
|
+
import 'oxc-parser';
|
|
7
|
+
import 'semver';
|
|
8
|
+
import 'unplugin';
|
|
9
|
+
import '@storm-software/build-tools/types';
|
|
10
|
+
import '@storm-software/config-tools/types';
|
|
11
|
+
import '@storm-software/config/types';
|
|
12
|
+
import '@stryke/types/base';
|
|
13
|
+
import '@stryke/types/configuration';
|
|
14
|
+
import '@stryke/types/file';
|
|
15
|
+
import 'vite';
|
|
16
|
+
import '@stryke/types/array';
|
|
17
|
+
import '@stryke/types/tsconfig';
|
|
18
|
+
import 'typescript';
|
|
19
|
+
import '@stryke/json/types';
|
|
20
|
+
import 'memfs';
|
|
21
|
+
import 'node:fs';
|
|
22
|
+
import 'unionfs';
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-unbuild",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin to build projects using Unbuild.",
|
|
6
6
|
"repository": {
|
|
@@ -127,21 +127,21 @@
|
|
|
127
127
|
"files": ["dist/**/*"],
|
|
128
128
|
"keywords": ["unbuild", "powerlines", "storm-software", "powerlines-plugin"],
|
|
129
129
|
"dependencies": {
|
|
130
|
-
"@storm-software/unbuild": "^0.57.
|
|
131
|
-
"@stryke/fs": "^0.32.
|
|
132
|
-
"@stryke/path": "^0.
|
|
130
|
+
"@storm-software/unbuild": "^0.57.19",
|
|
131
|
+
"@stryke/fs": "^0.32.10",
|
|
132
|
+
"@stryke/path": "^0.18.5",
|
|
133
133
|
"@stryke/type-checks": "^0.3.10",
|
|
134
134
|
"@stryke/types": "^0.10.0",
|
|
135
135
|
"defu": "^6.1.4",
|
|
136
136
|
"jiti": "^2.6.1",
|
|
137
|
-
"powerlines": "^0.
|
|
137
|
+
"powerlines": "^0.15.0",
|
|
138
138
|
"unplugin": "^2.3.10"
|
|
139
139
|
},
|
|
140
140
|
"devDependencies": {
|
|
141
|
-
"@powerlines/nx": "^0.
|
|
142
|
-
"@powerlines/plugin-plugin": "^0.11.
|
|
143
|
-
"@types/node": "^22.
|
|
141
|
+
"@powerlines/nx": "^0.10.0",
|
|
142
|
+
"@powerlines/plugin-plugin": "^0.11.8",
|
|
143
|
+
"@types/node": "^22.19.0"
|
|
144
144
|
},
|
|
145
145
|
"publishConfig": { "access": "public" },
|
|
146
|
-
"gitHead": "
|
|
146
|
+
"gitHead": "b64f9a9d53b6eb8054c361da347f6623a7ba9e45"
|
|
147
147
|
}
|