@rslib/core 0.12.0 → 0.12.2
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.js +3 -3
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -3012,7 +3012,7 @@ const applyCommonOptions = (cli)=>{
|
|
|
3012
3012
|
function runCli() {
|
|
3013
3013
|
const cli = dist('rslib');
|
|
3014
3014
|
cli.help();
|
|
3015
|
-
cli.version("0.12.
|
|
3015
|
+
cli.version("0.12.2");
|
|
3016
3016
|
applyCommonOptions(cli);
|
|
3017
3017
|
const buildCommand = cli.command('build', 'build the library for production');
|
|
3018
3018
|
const inspectCommand = cli.command('inspect', 'inspect the Rsbuild / Rspack configs of Rslib projects');
|
|
@@ -3083,8 +3083,8 @@ function prepareCli() {
|
|
|
3083
3083
|
initNodeEnv();
|
|
3084
3084
|
const { npm_execpath } = process.env;
|
|
3085
3085
|
if (!npm_execpath || npm_execpath.includes('npx-cli.js') || npm_execpath.includes('.bun')) console.log();
|
|
3086
|
-
logger.greet(` Rslib v0.12.
|
|
3086
|
+
logger.greet(` Rslib v0.12.2\n`);
|
|
3087
3087
|
}
|
|
3088
|
-
const src_version = "0.12.
|
|
3088
|
+
const src_version = "0.12.2";
|
|
3089
3089
|
var __webpack_exports__rspack = __WEBPACK_EXTERNAL_MODULE__rsbuild_core_1b356efc__.rspack;
|
|
3090
3090
|
export { build, defineConfig, inspect, loadConfig, logger, prepareCli, __WEBPACK_EXTERNAL_MODULE__rsbuild_core_1b356efc__ as rsbuild, runCli, startMFDevServer, composeCreateRsbuildConfig as unstable_composeCreateRsbuildConfig, src_version as version, __webpack_exports__rspack as rspack };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rslib/core",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.2",
|
|
4
4
|
"description": "The Rsbuild-based library development tool.",
|
|
5
5
|
"homepage": "https://rslib.rs",
|
|
6
6
|
"bugs": {
|
|
@@ -36,12 +36,12 @@
|
|
|
36
36
|
"types.d.ts"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@rsbuild/core": "1.5.0-beta.
|
|
39
|
+
"@rsbuild/core": "1.5.0-beta.4",
|
|
40
40
|
"tinyglobby": "^0.2.14",
|
|
41
|
-
"rsbuild-plugin-dts": "0.12.
|
|
41
|
+
"rsbuild-plugin-dts": "0.12.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@module-federation/rsbuild-plugin": "^0.18.
|
|
44
|
+
"@module-federation/rsbuild-plugin": "^0.18.2",
|
|
45
45
|
"@types/fs-extra": "^11.0.4",
|
|
46
46
|
"cac": "^6.7.14",
|
|
47
47
|
"chokidar": "^4.0.3",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"picocolors": "1.1.1",
|
|
51
51
|
"prebundle": "1.4.1",
|
|
52
52
|
"rsbuild-plugin-publint": "^0.3.3",
|
|
53
|
-
"rslib": "npm:@rslib/core@0.
|
|
53
|
+
"rslib": "npm:@rslib/core@0.12.1",
|
|
54
54
|
"rslog": "^1.2.11",
|
|
55
55
|
"tsconfck": "3.1.6",
|
|
56
56
|
"typescript": "^5.9.2",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"build": "rslib build",
|
|
80
80
|
"dev": "rslib build --watch",
|
|
81
81
|
"prebundle": "prebundle",
|
|
82
|
-
"test": "rstest
|
|
82
|
+
"test": "rstest",
|
|
83
83
|
"type-check": "tsc --noEmit && tsc --noEmit -p tests"
|
|
84
84
|
}
|
|
85
85
|
}
|