@rsbuild/plugin-toml 1.1.0 → 1.1.1
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.cjs +13 -9
- package/package.json +9 -9
package/dist/index.cjs
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __webpack_modules__ = {
|
|
3
3
|
toml: function(module) {
|
|
4
|
-
module.exports = import("toml")
|
|
4
|
+
module.exports = import("toml").then(function(module) {
|
|
5
|
+
return module;
|
|
6
|
+
});
|
|
5
7
|
}
|
|
6
8
|
};
|
|
7
9
|
var __webpack_module_cache__ = {};
|
|
@@ -15,7 +17,7 @@ function __webpack_require__(moduleId) {
|
|
|
15
17
|
return module.exports;
|
|
16
18
|
}
|
|
17
19
|
(()=>{
|
|
18
|
-
__webpack_require__.d =
|
|
20
|
+
__webpack_require__.d = (exports1, definition)=>{
|
|
19
21
|
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
20
22
|
enumerable: true,
|
|
21
23
|
get: definition[key]
|
|
@@ -23,12 +25,10 @@ function __webpack_require__(moduleId) {
|
|
|
23
25
|
};
|
|
24
26
|
})();
|
|
25
27
|
(()=>{
|
|
26
|
-
__webpack_require__.o =
|
|
27
|
-
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
28
|
-
};
|
|
28
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
29
29
|
})();
|
|
30
30
|
(()=>{
|
|
31
|
-
__webpack_require__.r =
|
|
31
|
+
__webpack_require__.r = (exports1)=>{
|
|
32
32
|
if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
33
33
|
value: 'Module'
|
|
34
34
|
});
|
|
@@ -60,8 +60,12 @@ var __webpack_exports__ = {};
|
|
|
60
60
|
}
|
|
61
61
|
});
|
|
62
62
|
})();
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
63
|
+
exports.PLUGIN_TOML_NAME = __webpack_exports__.PLUGIN_TOML_NAME;
|
|
64
|
+
exports.pluginToml = __webpack_exports__.pluginToml;
|
|
65
|
+
for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
66
|
+
"PLUGIN_TOML_NAME",
|
|
67
|
+
"pluginToml"
|
|
68
|
+
].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
69
|
+
Object.defineProperty(exports, '__esModule', {
|
|
66
70
|
value: true
|
|
67
71
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rsbuild/plugin-toml",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"repository": "https://github.com/rspack-contrib/rsbuild-plugin-toml",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@biomejs/biome": "^1.9.4",
|
|
42
|
-
"@playwright/test": "^1.
|
|
43
|
-
"@rsbuild/core": "1.
|
|
44
|
-
"@rslib/core": "^0.
|
|
45
|
-
"@types/node": "^22.
|
|
42
|
+
"@playwright/test": "^1.54.1",
|
|
43
|
+
"@rsbuild/core": "1.4.12",
|
|
44
|
+
"@rslib/core": "^0.11.0",
|
|
45
|
+
"@types/node": "^22.17.0",
|
|
46
46
|
"nano-staged": "^0.8.0",
|
|
47
|
-
"playwright": "^1.
|
|
48
|
-
"simple-git-hooks": "^2.
|
|
49
|
-
"typescript": "^5.
|
|
47
|
+
"playwright": "^1.54.1",
|
|
48
|
+
"simple-git-hooks": "^2.13.1",
|
|
49
|
+
"typescript": "^5.9.2"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"@rsbuild/core": "1.x"
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"optional": true
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
|
-
"packageManager": "pnpm@10.
|
|
59
|
+
"packageManager": "pnpm@10.14.0",
|
|
60
60
|
"publishConfig": {
|
|
61
61
|
"access": "public",
|
|
62
62
|
"registry": "https://registry.npmjs.org/"
|