@rsbuild/core 0.4.4 → 0.4.5

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.
@@ -112,7 +112,7 @@ const applyServerOptions = (command) => {
112
112
  command.option("-o --open [url]", "open the page in browser on startup").option("--port <port>", "specify a port number for server to listen").option("--host <host>", "specify the host that the server listens to");
113
113
  };
114
114
  function runCli() {
115
- import_commander.program.name("rsbuild").usage("<command> [options]").version("0.4.4");
115
+ import_commander.program.name("rsbuild").usage("<command> [options]").version("0.4.5");
116
116
  const devCommand = import_commander.program.command("dev");
117
117
  const buildCommand = import_commander.program.command("build");
118
118
  const previewCommand = import_commander.program.command("preview");
@@ -34,7 +34,7 @@ function prepareCli() {
34
34
  if (!npm_execpath || npm_execpath.includes("npx-cli.js")) {
35
35
  console.log();
36
36
  }
37
- import_rslog.logger.greet(` ${`Rsbuild v${"0.4.4"}`}
37
+ import_rslog.logger.greet(` ${`Rsbuild v${"0.4.5"}`}
38
38
  `);
39
39
  }
40
40
  // Annotate the CommonJS export names for ESM import in node:
package/dist/index.js CHANGED
@@ -37,7 +37,7 @@ var import_createRsbuild = require("./createRsbuild");
37
37
  var import_config = require("./cli/config");
38
38
  var import_shared = require("@rsbuild/shared");
39
39
  var import_constants = require("./constants");
40
- const version = "0.4.4";
40
+ const version = "0.4.5";
41
41
  // Annotate the CommonJS export names for ESM import in node:
42
42
  0 && (module.exports = {
43
43
  PLUGIN_CSS_NAME,
@@ -43,7 +43,7 @@ async function createContextByConfig(options, bundlerType, config = {}) {
43
43
  const context = {
44
44
  entry: config.source?.entry || {},
45
45
  targets: config.output?.targets || [],
46
- version: "0.4.4",
46
+ version: "0.4.5",
47
47
  rootPath,
48
48
  distPath,
49
49
  cachePath,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsbuild/core",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "description": "The Rspack-based build tool.",
5
5
  "homepage": "https://rsbuild.dev",
6
6
  "bugs": {
@@ -57,7 +57,7 @@
57
57
  "core-js": "~3.32.2",
58
58
  "html-webpack-plugin": "npm:html-rspack-plugin@5.6.0",
59
59
  "postcss": "^8.4.33",
60
- "@rsbuild/shared": "0.4.4"
60
+ "@rsbuild/shared": "0.4.5"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@types/node": "16.x",