powerlines 0.47.76 → 0.47.78
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/package.cjs +1 -1
- package/dist/package.mjs +1 -1
- package/dist/schema.cjs +9 -0
- package/dist/schema.d.cts +1 -0
- package/dist/schema.d.mts +1 -0
- package/dist/schema.mjs +3 -0
- package/package.json +15 -10
package/dist/package.cjs
CHANGED
package/dist/package.mjs
CHANGED
package/dist/schema.cjs
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
var _powerlines_schema = require("@powerlines/schema");
|
|
4
|
+
Object.keys(_powerlines_schema).forEach(function (k) {
|
|
5
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function () { return _powerlines_schema[k]; }
|
|
8
|
+
});
|
|
9
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@powerlines/schema";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@powerlines/schema";
|
package/dist/schema.mjs
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "powerlines",
|
|
3
|
-
"version": "0.47.
|
|
3
|
+
"version": "0.47.78",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The \"framework framework\" that simplifies modern dev tool usage, generates virtual (or actual) code modules, and improves DX across the board.",
|
|
6
6
|
"keywords": [
|
|
@@ -92,6 +92,10 @@
|
|
|
92
92
|
"import": "./dist/rspack.mjs",
|
|
93
93
|
"require": "./dist/rspack.cjs"
|
|
94
94
|
},
|
|
95
|
+
"./schema": {
|
|
96
|
+
"import": "./dist/schema.mjs",
|
|
97
|
+
"require": "./dist/schema.cjs"
|
|
98
|
+
},
|
|
95
99
|
"./storage": {
|
|
96
100
|
"import": "./dist/storage.mjs",
|
|
97
101
|
"require": "./dist/storage.cjs"
|
|
@@ -121,28 +125,29 @@
|
|
|
121
125
|
"main": "./dist/index.cjs",
|
|
122
126
|
"module": "./dist/index.mjs",
|
|
123
127
|
"types": "./dist/index.d.cts",
|
|
128
|
+
"bin": { "powerlines": "./bin/bin.mjs" },
|
|
124
129
|
"files": ["dist", "files"],
|
|
125
130
|
"dependencies": {
|
|
126
131
|
"@babel/types": "8.0.0-rc.6",
|
|
127
|
-
"@powerlines/core": "^0.48.
|
|
128
|
-
"@powerlines/engine": "^0.49.
|
|
129
|
-
"@powerlines/
|
|
132
|
+
"@powerlines/core": "^0.48.21",
|
|
133
|
+
"@powerlines/engine": "^0.49.22",
|
|
134
|
+
"@powerlines/schema": "^0.11.62",
|
|
135
|
+
"@powerlines/unplugin": "^0.0.69",
|
|
130
136
|
"@storm-software/config": "^1.137.65",
|
|
131
137
|
"@storm-software/config-tools": "^1.190.33",
|
|
132
|
-
"@stryke/
|
|
133
|
-
"@stryke/
|
|
134
|
-
"@stryke/
|
|
138
|
+
"@stryke/convert": "^0.7.10",
|
|
139
|
+
"@stryke/env": "^0.20.96",
|
|
140
|
+
"@stryke/fs": "^0.33.79",
|
|
135
141
|
"defu": "^6.1.7",
|
|
136
142
|
"unplugin": "^3.0.0"
|
|
137
143
|
},
|
|
138
144
|
"devDependencies": {
|
|
139
145
|
"@storm-software/testing-tools": "^1.119.186",
|
|
140
|
-
"@stryke/types": "^0.12.
|
|
146
|
+
"@stryke/types": "^0.12.7",
|
|
141
147
|
"@types/node": "^25.9.1",
|
|
142
148
|
"typescript": "^6.0.3",
|
|
143
149
|
"undici-types": "^7.26.0"
|
|
144
150
|
},
|
|
145
151
|
"publishConfig": { "access": "public" },
|
|
146
|
-
"
|
|
147
|
-
"gitHead": "53c5911f6d02444075c38d2965bb8361ae30f7e5"
|
|
152
|
+
"gitHead": "522229ca4642e0d36d6e5426a70522b711a9fa91"
|
|
148
153
|
}
|