ensure output.publicPath can be overriden

This commit is contained in:
Nacho Codoñer
2025-12-15 19:47:59 +01:00
parent ab703e3140
commit db47a0a181
19 changed files with 21 additions and 22 deletions

View File

@@ -1,12 +1,12 @@
{
"name": "@meteorjs/rspack",
"version": "0.3.50",
"version": "0.3.51",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@meteorjs/rspack",
"version": "0.3.50",
"version": "0.3.51",
"license": "ISC",
"dependencies": {
"fast-deep-equal": "^3.1.3",
@@ -3251,7 +3251,7 @@
}
},
"node_modules/media-typer": {
"version": "0.3.50",
"version": "0.3.51",
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
"integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
"license": "MIT",

View File

@@ -1,6 +1,6 @@
{
"name": "@meteorjs/rspack",
"version": "0.3.50",
"version": "0.3.51",
"description": "Configuration logic for using Rspack in Meteor projects",
"main": "index.js",
"type": "commonjs",

View File

@@ -662,7 +662,6 @@ module.exports = async function (inMeteor = {}, argv = {}) {
"entry",
"output.path",
"output.filename",
"output.publicPath",
...(Meteor.isServer ? ["optimization.splitChunks", "optimization.runtimeChunk"] : []),
].filter(Boolean);

View File

@@ -5,7 +5,7 @@
export const DEFAULT_RSPACK_VERSION = '1.6.5';
export const DEFAULT_METEOR_RSPACK_VERSION = '0.3.50';
export const DEFAULT_METEOR_RSPACK_VERSION = '0.3.51';
export const DEFAULT_METEOR_RSPACK_REACT_HMR_VERSION = '1.4.3';

View File

@@ -17,7 +17,7 @@
"vue-router": "^4.2.5"
},
"devDependencies": {
"@meteorjs/rspack": "^0.3.50",
"@meteorjs/rspack": "^0.3.51",
"@rspack/cli": "^1.4.8",
"@rspack/core": "^1.4.8",
"@tailwindcss/postcss": "^4.1.12",

View File

@@ -22,7 +22,7 @@
},
"devDependencies": {
"@angular/compiler-cli": "^20.0.0",
"@meteorjs/rspack": "^0.3.50",
"@meteorjs/rspack": "^0.3.51",
"@nx/angular-rspack": "^21.1.0",
"@rsdoctor/rspack-plugin": "^1.2.3",
"@rspack/cli": "^1.6.5",

View File

@@ -20,7 +20,7 @@
"devDependencies": {
"@graphql-tools/webpack-loader": "^7.0.0",
"@rsdoctor/rspack-plugin": "^1.2.3",
"@meteorjs/rspack": "^0.3.50",
"@meteorjs/rspack": "^0.3.51",
"@rspack/cli": "^1.6.5",
"@rspack/core": "^1.6.5",
"@rspack/plugin-react-refresh": "^1.4.3",

View File

@@ -17,7 +17,7 @@
"devDependencies": {
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.23.3",
"@meteorjs/rspack": "^0.3.50",
"@meteorjs/rspack": "^0.3.51",
"@rsdoctor/rspack-plugin": "^1.2.3",
"@rspack/cli": "^1.6.5",
"@rspack/core": "^1.6.5",

View File

@@ -14,7 +14,7 @@
"meteor-node-stubs": "^1.2.12"
},
"devDependencies": {
"@meteorjs/rspack": "^0.3.50",
"@meteorjs/rspack": "^0.3.51",
"@rsdoctor/rspack-plugin": "^1.2.3",
"@rspack/cli": "^1.6.5",
"@rspack/core": "^1.6.5",

View File

@@ -21,7 +21,7 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@meteorjs/rspack": "^0.3.50",
"@meteorjs/rspack": "^0.3.51",
"@rsdoctor/rspack-plugin": "^1.2.3",
"@rspack/cli": "^1.6.5",
"@rspack/core": "^1.6.5",

View File

@@ -15,7 +15,7 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@meteorjs/rspack": "^0.3.50",
"@meteorjs/rspack": "^0.3.51",
"@rsdoctor/rspack-plugin": "^1.2.3",
"@rspack/cli": "^1.6.5",
"@rspack/core": "^1.6.5",

View File

@@ -12,7 +12,7 @@
"meteor-node-stubs": "^1.2.12"
},
"devDependencies": {
"@meteorjs/rspack": "^0.3.50",
"@meteorjs/rspack": "^0.3.51",
"@rsdoctor/rspack-plugin": "^1.2.3",
"@rspack/cli": "^1.6.5",
"@rspack/core": "^1.6.5",

View File

@@ -15,7 +15,7 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@meteorjs/rspack": "^0.3.50",
"@meteorjs/rspack": "^0.3.51",
"@rsdoctor/rspack-plugin": "^1.2.3",
"@rspack/cli": "^1.6.5",
"@rspack/core": "^1.6.5",

View File

@@ -14,7 +14,7 @@
"picocolors": "^1.1.1"
},
"devDependencies": {
"@meteorjs/rspack": "^0.3.50",
"@meteorjs/rspack": "^0.3.51",
"@rsdoctor/rspack-plugin": "^1.2.3",
"@rspack/cli": "^1.6.5",
"@rspack/core": "^1.6.5",

View File

@@ -13,7 +13,7 @@
"meteor-node-stubs": "^1.2.12"
},
"devDependencies": {
"@meteorjs/rspack": "^0.3.50",
"@meteorjs/rspack": "^0.3.51",
"@rsdoctor/rspack-plugin": "^1.2.3",
"@rspack/cli": "^1.6.5",
"@rspack/core": "^1.6.5",

View File

@@ -16,7 +16,7 @@
"react-dom": "^17.0.2"
},
"devDependencies": {
"@meteorjs/rspack": "^0.3.50",
"@meteorjs/rspack": "^0.3.51",
"@rsdoctor/rspack-plugin": "^1.2.3",
"@rspack/cli": "^1.6.5",
"@rspack/core": "^1.6.5",

View File

@@ -15,7 +15,7 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@meteorjs/rspack": "^0.3.50",
"@meteorjs/rspack": "^0.3.51",
"@rsdoctor/rspack-plugin": "^1.2.3",
"@rspack/cli": "^1.6.5",
"@rspack/core": "^1.6.5",

View File

@@ -17,7 +17,7 @@
"vue-router": "^4.2.5"
},
"devDependencies": {
"@meteorjs/rspack": "^0.3.50",
"@meteorjs/rspack": "^0.3.51",
"@rsdoctor/rspack-plugin": "^1.2.3",
"@rspack/cli": "^1.6.5",
"@rspack/core": "^1.6.5",

View File

@@ -104,7 +104,7 @@ If you find any issues, please report them to the [Meteor issues tracker](https:
- minifier-js@3.1.0-rc340.1
- minimongo@2.0.5-rc340.1
- mongo@2.2.0-rc340.1
- react-fast-refresh@0.3.50-rc340.1
- react-fast-refresh@0.3.51-rc340.1
- rspack@1.0.0-rc340.1
- shell-server@0.7.0-rc340.1
- standard-minifier-css@1.10.0-rc340.1
@@ -119,7 +119,7 @@ If you find any issues, please report them to the [Meteor issues tracker](https:
#### Bumped NPM Packages
- @meteorjs/rspack@0.3.50
- @meteorjs/rspack@0.3.51
#### Special thanks to