@lynx-js/react-alias-rsbuild-plugin-canary 0.12.1-canary-20251210-47cc2bc6 → 0.12.1-canary-20251210-37d32392

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @lynx-js/react-alias-rsbuild-plugin
2
2
 
3
- ## 0.12.1-canary-20251210073827-47cc2bc694d0da12b41d55e459c4e78338e8b77a
3
+ ## 0.12.1-canary-20251210102141-37d32392fef3644ef156866321a2879710671ef2
4
4
 
5
5
  ## 0.12.0
6
6
 
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { createRequire } from "node:module";
2
2
  import node_path from "node:path";
3
3
  var __webpack_modules__ = {
4
- "../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/classes/semver.js": function(module, __unused_webpack_exports, __webpack_require__) {
4
+ "../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/classes/semver.js" (module, __unused_webpack_exports, __webpack_require__) {
5
5
  const debug = __webpack_require__("../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/debug.js");
6
6
  const { MAX_LENGTH, MAX_SAFE_INTEGER } = __webpack_require__("../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/constants.js");
7
7
  const { safeRe: re, t } = __webpack_require__("../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/re.js");
@@ -181,17 +181,17 @@ var __webpack_modules__ = {
181
181
  }
182
182
  module.exports = SemVer;
183
183
  },
184
- "../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/compare.js": function(module, __unused_webpack_exports, __webpack_require__) {
184
+ "../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/compare.js" (module, __unused_webpack_exports, __webpack_require__) {
185
185
  const SemVer = __webpack_require__("../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/classes/semver.js");
186
186
  const compare = (a, b, loose)=>new SemVer(a, loose).compare(new SemVer(b, loose));
187
187
  module.exports = compare;
188
188
  },
189
- "../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/gte.js": function(module, __unused_webpack_exports, __webpack_require__) {
189
+ "../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/gte.js" (module, __unused_webpack_exports, __webpack_require__) {
190
190
  const compare = __webpack_require__("../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/compare.js");
191
191
  const gte = (a, b, loose)=>compare(a, b, loose) >= 0;
192
192
  module.exports = gte;
193
193
  },
194
- "../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/constants.js": function(module) {
194
+ "../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/constants.js" (module) {
195
195
  const SEMVER_SPEC_VERSION = '2.0.0';
196
196
  const MAX_LENGTH = 256;
197
197
  const MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || 9007199254740991;
@@ -217,11 +217,11 @@ var __webpack_modules__ = {
217
217
  FLAG_LOOSE: 2
218
218
  };
219
219
  },
220
- "../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/debug.js": function(module) {
220
+ "../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/debug.js" (module) {
221
221
  const debug = 'object' == typeof process && process.env && process.env.NODE_DEBUG && /\bsemver\b/i.test(process.env.NODE_DEBUG) ? (...args)=>console.error('SEMVER', ...args) : ()=>{};
222
222
  module.exports = debug;
223
223
  },
224
- "../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/identifiers.js": function(module) {
224
+ "../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/identifiers.js" (module) {
225
225
  const numeric = /^[0-9]+$/;
226
226
  const compareIdentifiers = (a, b)=>{
227
227
  const anum = numeric.test(a);
@@ -238,7 +238,7 @@ var __webpack_modules__ = {
238
238
  rcompareIdentifiers
239
239
  };
240
240
  },
241
- "../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/parse-options.js": function(module) {
241
+ "../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/parse-options.js" (module) {
242
242
  const looseOption = Object.freeze({
243
243
  loose: true
244
244
  });
@@ -250,7 +250,7 @@ var __webpack_modules__ = {
250
250
  };
251
251
  module.exports = parseOptions;
252
252
  },
253
- "../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/re.js": function(module, exports, __webpack_require__) {
253
+ "../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/re.js" (module, exports, __webpack_require__) {
254
254
  const { MAX_SAFE_COMPONENT_LENGTH, MAX_SAFE_BUILD_LENGTH, MAX_LENGTH } = __webpack_require__("../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/constants.js");
255
255
  const debug = __webpack_require__("../../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/debug.js");
256
256
  exports = module.exports = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lynx-js/react-alias-rsbuild-plugin-canary",
3
- "version": "0.12.1-canary-20251210-47cc2bc6",
3
+ "version": "0.12.1-canary-20251210-37d32392",
4
4
  "description": "A rsbuild plugin for making alias in ReactLynx",
5
5
  "keywords": [
6
6
  "rsbuild",
@@ -33,13 +33,13 @@
33
33
  ],
34
34
  "devDependencies": {
35
35
  "@microsoft/api-extractor": "7.52.15",
36
- "@rsbuild/core": "1.6.9",
37
- "@rspack/core": "1.6.5",
36
+ "@rsbuild/core": "1.6.13",
37
+ "@rspack/core": "1.6.6",
38
38
  "@types/semver": "^7.7.1",
39
39
  "semver": "^7.7.2",
40
+ "@lynx-js/react-webpack-plugin": "npm:@lynx-js/react-webpack-plugin-canary@0.7.3-canary-20251210-37d32392",
40
41
  "@lynx-js/vitest-setup": "0.0.0",
41
- "@lynx-js/react-webpack-plugin": "npm:@lynx-js/react-webpack-plugin-canary@0.7.3-canary-20251210-47cc2bc6",
42
- "@lynx-js/react": "npm:@lynx-js/react-canary@0.115.1-canary-20251210-47cc2bc6"
42
+ "@lynx-js/react": "npm:@lynx-js/react-canary@0.115.1-canary-20251210-37d32392"
43
43
  },
44
44
  "engines": {
45
45
  "node": ">=18"