@mainset/builder-rslib 0.3.1-rc.1 → 0.3.1-rc.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.
@@ -50,7 +50,10 @@ const nodeSourcerCommonPresetRslib = defineConfig({
50
50
  ],
51
51
  source: {
52
52
  entry: {
53
- index: path.join(runtimePathById.src, process.env.MS_CLI__RSLIB_BUNDLESS_MODE ? '/**/*' : 'index.mts'),
53
+ index: process.env.MS_CLI__RSLIB_BUNDLESS_MODE
54
+ ? // NOTE: the {.replace} is required to make the path work on Windows OS
55
+ path.join(runtimePathById.src, '/**/*').replace(/\\/g, '/')
56
+ : path.join(runtimePathById.src, 'index.mts'),
54
57
  },
55
58
  },
56
59
  output: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mainset/builder-rslib",
3
- "version": "0.3.1-rc.1",
3
+ "version": "0.3.1-rc.2",
4
4
  "description": "Builder for node packages",
5
5
  "homepage": "https://github.com/mainset/dev-stack-fe/tree/main/packages/builder-rslib",
6
6
  "bugs": {
@@ -32,8 +32,8 @@
32
32
  },
33
33
  "devDependencies": {
34
34
  "@mainset/cli": "^0.5.0",
35
- "@mainset/toolkit-js": "^0.2.0-rc.1",
36
- "@mainset/dev-stack-fe": "^0.2.1"
35
+ "@mainset/dev-stack-fe": "^0.2.1",
36
+ "@mainset/toolkit-js": "^0.2.0-rc.1"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "@mainset/cli": ">=0.5.0 <1.0.0",