powerlines 0.47.76 → 0.47.77
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 +12 -7
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.77",
|
|
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,17 +125,19 @@
|
|
|
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.20",
|
|
133
|
+
"@powerlines/engine": "^0.49.21",
|
|
134
|
+
"@powerlines/schema": "^0.11.61",
|
|
135
|
+
"@powerlines/unplugin": "^0.0.68",
|
|
130
136
|
"@storm-software/config": "^1.137.65",
|
|
131
137
|
"@storm-software/config-tools": "^1.190.33",
|
|
132
|
-
"@stryke/fs": "^0.33.78",
|
|
133
138
|
"@stryke/convert": "^0.7.9",
|
|
134
139
|
"@stryke/env": "^0.20.95",
|
|
140
|
+
"@stryke/fs": "^0.33.78",
|
|
135
141
|
"defu": "^6.1.7",
|
|
136
142
|
"unplugin": "^3.0.0"
|
|
137
143
|
},
|
|
@@ -143,6 +149,5 @@
|
|
|
143
149
|
"undici-types": "^7.26.0"
|
|
144
150
|
},
|
|
145
151
|
"publishConfig": { "access": "public" },
|
|
146
|
-
"
|
|
147
|
-
"gitHead": "53c5911f6d02444075c38d2965bb8361ae30f7e5"
|
|
152
|
+
"gitHead": "c3e136ea350f7dbdd9ab46ae52c8c47a81f02e41"
|
|
148
153
|
}
|