@rsbuild/core 0.1.0 → 1.0.0

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.
@@ -62,7 +62,7 @@ async function init({
62
62
  }
63
63
  }
64
64
  function runCli() {
65
- import_commander.program.name("rsbuild").usage("<command> [options]").version("0.1.0");
65
+ import_commander.program.name("rsbuild").usage("<command> [options]").version("1.0.0");
66
66
  import_commander.program.command("dev").option(`--open`, "open the page in browser on startup").option(
67
67
  "-c --config <config>",
68
68
  "specify the configuration file, can be a relative or absolute path"
@@ -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.1.0"}`}
37
+ import_rslog.logger.greet(` ${`Rsbuild v${"1.0.0"}`}
38
38
  `);
39
39
  }
40
40
  // Annotate the CommonJS export names for ESM import in node:
@@ -64,7 +64,7 @@ function createContextByConfig(options, bundlerType, sourceConfig = {}, outputCo
64
64
  entry: sourceConfig.entry || // TODO: remove sourceConfig.entries in v0.2.0
65
65
  // compat with previous config
66
66
  sourceConfig.entries || getDefaultEntry(rootPath),
67
- version: "0.1.0",
67
+ version: "1.0.0",
68
68
  target,
69
69
  rootPath,
70
70
  distPath,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsbuild/core",
3
- "version": "0.1.0",
3
+ "version": "1.0.0",
4
4
  "description": "Unleash the power of Rspack with the out-of-the-box build tool.",
5
5
  "homepage": "https://rsbuild.dev",
6
6
  "bugs": {
@@ -64,7 +64,7 @@
64
64
  "postcss": "8.4.31",
65
65
  "semver": "^7.5.4",
66
66
  "ws": "^8.2.0",
67
- "@rsbuild/shared": "0.1.0"
67
+ "@rsbuild/shared": "1.0.0"
68
68
  },
69
69
  "devDependencies": {
70
70
  "@types/node": "^16",