shakapacker 10.1.0.rc.0 → 10.1.0.rc.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -3
- data/lib/install/bin/diff-bundler-config +45 -64
- data/lib/install/bin/shakapacker-config +43 -9
- data/lib/install/config/shakapacker.yml +0 -3
- data/lib/shakapacker/version.rb +1 -1
- data/lib/tasks/shakapacker/check_node.rake +17 -13
- data/lib/tasks/shakapacker/export_bundler_config.rake +5 -5
- data/package.json +234 -0
- data/shakapacker.gemspec +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b2dbe6638add4651d5bd04b2c7138619f43427c71af173bc73ff10d231cefbed
|
|
4
|
+
data.tar.gz: 298bb003983f87e10e1cf61665e6bfab52bee6a8c632320f01323a6212de7c0e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 40b41c276daa9b229524738cb969b3e3e6f1aa6b6c31ff7e4e77d18e1a72291a48dd9c4efca11fddfeebdeb886f16632cd6af0b94a4dde652333afb6c6d0b10d
|
|
7
|
+
data.tar.gz: 6c1b242e31123d3a331028305181fc0ca99650606b9d8273287f37cf4670d1103dd0fc670e48b91335ee5f222e605df94dbfa18d44e2555e7fd3dc25e1bae326
|
data/CHANGELOG.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
## [Unreleased]
|
|
11
11
|
|
|
12
|
-
## [v10.1.0-rc.
|
|
12
|
+
## [v10.1.0-rc.1] - May 21, 2026
|
|
13
13
|
|
|
14
14
|
### Added
|
|
15
15
|
|
|
@@ -38,11 +38,14 @@
|
|
|
38
38
|
|
|
39
39
|
### Fixed
|
|
40
40
|
|
|
41
|
+
- **Fixed webpack-dev-server `static` config defaulting to watch `public/` directory unnecessarily**. [PR #1032](https://github.com/shakacode/shakapacker/pull/1032) by [ihabadham](https://github.com/ihabadham). Three bugs fixed: (1) `static` now defaults to `false` instead of a misconfigured object that caused webpack-dev-server to watch the `public/` directory, which is already served by Rails via `ActionDispatch::Static`; (2) setting `static: false` in `shakapacker.yml` is no longer silently ignored; (3) the default template no longer includes `static.watch`, which was a v3→v4 migration artifact. Fixes [#1031](https://github.com/shakacode/shakapacker/issues/1031).
|
|
41
42
|
- **Fixed Rspack React Refresh plugin loading with `@rspack/plugin-react-refresh` v2**. [PR #1116](https://github.com/shakacode/shakapacker/pull/1116) by [justin808](https://github.com/justin808). Shakapacker now reads the v2 named `ReactRefreshRspackPlugin` export while retaining compatibility with v1 direct/default CommonJS export shapes, preventing `TypeError: ReactRefreshRspackPlugin is not a constructor` during rspack dev-server startup.
|
|
42
43
|
- **Widened `@rspack/plugin-react-refresh` peer range to `^1.0.0 || ^2.0.0-0`**. [PR #1091](https://github.com/shakacode/shakapacker/pull/1091) by [ihabadham](https://github.com/ihabadham). Fixes the `ERESOLVE` conflict when installing `@rspack/plugin-react-refresh@^2.0.0` alongside `shakapacker@10.0.0`.
|
|
43
44
|
- **Fixed `NodePackageVersion#find_version` for local-path `shakapacker` installs (e.g. `yalc`, `file:`, relative paths)**. [PR #1086](https://github.com/shakacode/shakapacker/pull/1086) by [justin808](https://github.com/justin808). The version check now consults `package.json` first and short-circuits on `../` or `file:` dependencies, so stale lockfile semvers no longer trigger false gem↔node version mismatches. `package_json_dependency` also consults `devDependencies` in addition to `dependencies`. The `LOCAL_PATH_REGEX` constant replaces a duplicated inline regex and anchors both alternatives to the start of the string, removing a latent false-positive on version strings containing `..` mid-value.
|
|
44
45
|
- **Detected single-dot (`./...`) local-path declarations in `NodePackageVersion#find_version`**. [PR #1106](https://github.com/shakacode/shakapacker/pull/1106) by [justin808](https://github.com/justin808). Extended `LOCAL_PATH_REGEX` to treat `./vendor/shakapacker`-style declarations as local-path installs (alongside the `../` and `file:` patterns added in [#1086](https://github.com/shakacode/shakapacker/pull/1086)), so version checks short-circuit before consulting potentially stale lockfile semvers. Fixes [#1103](https://github.com/shakacode/shakapacker/issues/1103).
|
|
45
46
|
- **Fix rspack setup not reusing certain shared webpack-rspack config settings**. [PR #1085](https://github.com/shakacode/shakapacker/pull/1085) by [brunodccarvalho](https://github.com/brunodccarvalho). Default config changes include `optimization.splitChunks.chunks="all"`, `optimization.runtimeChunk="single"`, the webpack compression plugin in production, and the removal of minimization plugins in development. Fixes [#984](https://github.com/shakacode/shakapacker/issues/984).
|
|
47
|
+
- **Fixed Rspack Sass rule blocking `sass-embedded` users by requiring the `sass` package**. [PR #1105](https://github.com/shakacode/shakapacker/pull/1105) by [justin808](https://github.com/justin808). Rspack Sass detection now only checks for `sass-loader`; the implementation (`sass`, `sass-embedded`, etc.) is resolved by the loader at build time, matching the webpack code path.
|
|
48
|
+
- **Fixed `bin/shakapacker-config` and `bin/diff-bundler-config` in ESM apps**. [PR #1104](https://github.com/shakacode/shakapacker/pull/1104) by [justin808](https://github.com/justin808). Apps with `"type": "module"` in `package.json` failed to run the JavaScript binstubs because Node parsed them as ESM. The binstubs are now Ruby wrappers that locate Node and invoke `.cjs` package scripts shipped inside `node_modules/shakapacker/package/bin/`. Existing apps with the old JavaScript binstubs should re-run `bundle exec rake shakapacker:binstubs` to install the new Ruby wrappers.
|
|
46
49
|
|
|
47
50
|
## [v10.0.0] - April 8, 2026
|
|
48
51
|
|
|
@@ -944,8 +947,8 @@ Note: [Rubygem is 6.3.0.pre.rc.1](https://rubygems.org/gems/shakapacker/versions
|
|
|
944
947
|
|
|
945
948
|
See [CHANGELOG.md in rails/webpacker (up to v5.4.3)](https://github.com/rails/webpacker/blob/master/CHANGELOG.md)
|
|
946
949
|
|
|
947
|
-
[Unreleased]: https://github.com/shakacode/shakapacker/compare/v10.1.0-rc.
|
|
948
|
-
[v10.1.0-rc.
|
|
950
|
+
[Unreleased]: https://github.com/shakacode/shakapacker/compare/v10.1.0-rc.1...main
|
|
951
|
+
[v10.1.0-rc.1]: https://github.com/shakacode/shakapacker/compare/v10.0.0...v10.1.0-rc.1
|
|
949
952
|
[v10.0.0]: https://github.com/shakacode/shakapacker/compare/v9.7.0...v10.0.0
|
|
950
953
|
[v9.7.0]: https://github.com/shakacode/shakapacker/compare/v9.6.1...v9.7.0
|
|
951
954
|
[v9.6.1]: https://github.com/shakacode/shakapacker/compare/v9.6.0...v9.6.1
|
|
@@ -1,64 +1,45 @@
|
|
|
1
|
-
#!/usr/bin/env
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
return
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
try {
|
|
49
|
-
const runResult = run(process.argv.slice(2))
|
|
50
|
-
|
|
51
|
-
if (runResult && typeof runResult.then === "function") {
|
|
52
|
-
runResult
|
|
53
|
-
.then((exitCode) => exitWithCode(exitCode))
|
|
54
|
-
.catch((error) => {
|
|
55
|
-
console.error(formatError(error))
|
|
56
|
-
process.exit(2)
|
|
57
|
-
})
|
|
58
|
-
} else {
|
|
59
|
-
exitWithCode(runResult)
|
|
60
|
-
}
|
|
61
|
-
} catch (error) {
|
|
62
|
-
console.error(formatError(error))
|
|
63
|
-
process.exit(2)
|
|
64
|
-
}
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
|
|
4
|
+
# Keep in sync with lib/install/bin/shakapacker-config and the template in
|
|
5
|
+
# package/configExporter/cli.ts (createBinStub).
|
|
6
|
+
def shakapacker_app_root
|
|
7
|
+
candidate = File.expand_path("..", __dir__)
|
|
8
|
+
return candidate if File.exist?(File.join(candidate, "Gemfile"))
|
|
9
|
+
|
|
10
|
+
warn "[Shakapacker] No Gemfile found at #{candidate.inspect}; " \
|
|
11
|
+
"falling back to the current directory (#{Dir.pwd.inspect})."
|
|
12
|
+
Dir.pwd
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def shakapacker_node_binary
|
|
16
|
+
node_bin = "node"
|
|
17
|
+
return node_bin if system(node_bin, "--version", out: File::NULL, err: File::NULL)
|
|
18
|
+
|
|
19
|
+
warn "[Shakapacker] Could not find Node.js executable #{node_bin.inspect}. " \
|
|
20
|
+
"Install Node.js and try again."
|
|
21
|
+
exit 1
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
ENV["RAILS_ENV"] ||= ENV["RACK_ENV"] || "development"
|
|
25
|
+
ENV["NODE_ENV"] ||= "development"
|
|
26
|
+
|
|
27
|
+
app_root = shakapacker_app_root
|
|
28
|
+
node_bin = shakapacker_node_binary
|
|
29
|
+
script_path = File.join(
|
|
30
|
+
app_root,
|
|
31
|
+
"node_modules",
|
|
32
|
+
"shakapacker",
|
|
33
|
+
"package",
|
|
34
|
+
"bin",
|
|
35
|
+
"diff-bundler-config.cjs"
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
unless File.file?(script_path)
|
|
39
|
+
warn "[Shakapacker] Could not find #{script_path}. Run your package manager install command and try again."
|
|
40
|
+
exit 1
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
Dir.chdir(app_root) do
|
|
44
|
+
exec node_bin, script_path, *ARGV
|
|
45
|
+
end
|
|
@@ -1,11 +1,45 @@
|
|
|
1
|
-
#!/usr/bin/env
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
2
3
|
|
|
3
|
-
|
|
4
|
-
|
|
4
|
+
# Keep in sync with lib/install/bin/diff-bundler-config and the template in
|
|
5
|
+
# package/configExporter/cli.ts (createBinStub).
|
|
6
|
+
def shakapacker_app_root
|
|
7
|
+
candidate = File.expand_path("..", __dir__)
|
|
8
|
+
return candidate if File.exist?(File.join(candidate, "Gemfile"))
|
|
5
9
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
.
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
warn "[Shakapacker] No Gemfile found at #{candidate.inspect}; " \
|
|
11
|
+
"falling back to the current directory (#{Dir.pwd.inspect})."
|
|
12
|
+
Dir.pwd
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def shakapacker_node_binary
|
|
16
|
+
node_bin = "node"
|
|
17
|
+
return node_bin if system(node_bin, "--version", out: File::NULL, err: File::NULL)
|
|
18
|
+
|
|
19
|
+
warn "[Shakapacker] Could not find Node.js executable #{node_bin.inspect}. " \
|
|
20
|
+
"Install Node.js and try again."
|
|
21
|
+
exit 1
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
ENV["RAILS_ENV"] ||= ENV["RACK_ENV"] || "development"
|
|
25
|
+
ENV["NODE_ENV"] ||= "development"
|
|
26
|
+
|
|
27
|
+
app_root = shakapacker_app_root
|
|
28
|
+
node_bin = shakapacker_node_binary
|
|
29
|
+
script_path = File.join(
|
|
30
|
+
app_root,
|
|
31
|
+
"node_modules",
|
|
32
|
+
"shakapacker",
|
|
33
|
+
"package",
|
|
34
|
+
"bin",
|
|
35
|
+
"shakapacker-config.cjs"
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
unless File.file?(script_path)
|
|
39
|
+
warn "[Shakapacker] Could not find #{script_path}. Run your package manager install command and try again."
|
|
40
|
+
exit 1
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
Dir.chdir(app_root) do
|
|
44
|
+
exec node_bin, script_path, *ARGV
|
|
45
|
+
end
|
data/lib/shakapacker/version.rb
CHANGED
|
@@ -6,21 +6,25 @@ namespace :shakapacker do
|
|
|
6
6
|
node_version = `node -v || nodejs -v`.strip
|
|
7
7
|
raise Errno::ENOENT if node_version.blank?
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
9
|
+
# Skip the engines.node range check if the gem-root package.json
|
|
10
|
+
# isn't shipped, so a missing file doesn't masquerade as Node missing.
|
|
11
|
+
pkg_path = Pathname.new("#{__dir__}/../../../package.json")
|
|
12
|
+
if pkg_path.exist?
|
|
13
|
+
node_range = JSON.parse(pkg_path.read)["engines"]["node"]
|
|
14
|
+
is_valid = SemanticRange.satisfies?(node_version, node_range) rescue false
|
|
15
|
+
semver_major = node_version[/\d+/] rescue nil
|
|
16
|
+
is_unstable = semver_major.to_i.odd? rescue false
|
|
14
17
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
+
if is_unstable
|
|
19
|
+
$stderr.puts "Warning: you are using an unstable release of Node.js (#{node_version}). If you encounter issues with Node.js, consider switching to an Active LTS release. More info: https://docs.npmjs.com/try-the-latest-stable-version-of-node"
|
|
20
|
+
end
|
|
18
21
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
unless is_valid
|
|
23
|
+
$stderr.puts "Shakapacker requires Node.js \"#{node_range}\" and you are using #{node_version}"
|
|
24
|
+
$stderr.puts "Please upgrade Node.js https://nodejs.org/en/download/"
|
|
25
|
+
$stderr.puts "Exiting!"
|
|
26
|
+
exit!
|
|
27
|
+
end
|
|
24
28
|
end
|
|
25
29
|
rescue Errno::ENOENT
|
|
26
30
|
$stderr.puts "Node.js not installed. Please download and install Node.js https://nodejs.org/en/download/"
|
|
@@ -54,14 +54,14 @@ namespace :shakapacker do
|
|
|
54
54
|
$stderr.puts ""
|
|
55
55
|
|
|
56
56
|
Dir.chdir(Rails.root) do
|
|
57
|
-
exec(
|
|
57
|
+
exec(RbConfig.ruby, gem_bin_path, *ARGV[1..])
|
|
58
58
|
end
|
|
59
59
|
else
|
|
60
|
-
# Pass through command-line arguments after the task name
|
|
61
|
-
#
|
|
62
|
-
#
|
|
60
|
+
# Pass through command-line arguments after the task name.
|
|
61
|
+
# Invoke with RbConfig.ruby so the binstub runs under the same Ruby as Rake
|
|
62
|
+
# (avoids version-manager/shebang mismatches and works on Windows).
|
|
63
63
|
Dir.chdir(Rails.root) do
|
|
64
|
-
exec(bin_path.to_s, *ARGV[1..])
|
|
64
|
+
exec(RbConfig.ruby, bin_path.to_s, *ARGV[1..])
|
|
65
65
|
end
|
|
66
66
|
end
|
|
67
67
|
end
|
data/package.json
ADDED
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "shakapacker",
|
|
3
|
+
"version": "10.1.0-rc.1",
|
|
4
|
+
"description": "Use webpack to manage app-like JavaScript modules in Rails",
|
|
5
|
+
"homepage": "https://github.com/shakacode/shakapacker",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/shakacode/shakapacker/issues"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/shakacode/shakapacker.git"
|
|
12
|
+
},
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"author": "David Heinemeier Hansson <david@basecamp.com>, Justin Gordon <justin@shakacode.com>",
|
|
15
|
+
"main": "package/index.js",
|
|
16
|
+
"types": "package/index.d.ts",
|
|
17
|
+
"exports": {
|
|
18
|
+
".": "./package/index.js",
|
|
19
|
+
"./types": "./package/types/index.js",
|
|
20
|
+
"./webpack": "./package/webpack/index.js",
|
|
21
|
+
"./rspack": "./package/rspack/index.js",
|
|
22
|
+
"./swc": "./package/swc/index.js",
|
|
23
|
+
"./esbuild": "./package/esbuild/index.js",
|
|
24
|
+
"./configExporter": "./package/configExporter/index.js",
|
|
25
|
+
"./package.json": "./package.json",
|
|
26
|
+
"./package/babel/preset.js": "./package/babel/preset.js",
|
|
27
|
+
"./package/config": "./package/config.js",
|
|
28
|
+
"./package/*": "./package/*"
|
|
29
|
+
},
|
|
30
|
+
"bin": {
|
|
31
|
+
"shakapacker-config": "package/bin/shakapacker-config.cjs",
|
|
32
|
+
"diff-bundler-config": "package/bin/diff-bundler-config.cjs"
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
"package",
|
|
36
|
+
"lib/install/config/shakapacker.yml"
|
|
37
|
+
],
|
|
38
|
+
"scripts": {
|
|
39
|
+
"clean:ts": "find package -name '*.ts' -not -name '*.d.ts' | sed 's/\\.ts$//' | xargs -I {} rm -f {}.js {}.d.ts {}.d.ts.map {}.js.map",
|
|
40
|
+
"build": "tsc && cp package/index.d.ts.template package/index.d.ts && node scripts/remove-use-strict.js && yarn prettier --write 'package/**/*.js' 'package/**/*.ts'",
|
|
41
|
+
"build:types": "tsc",
|
|
42
|
+
"knip": "knip",
|
|
43
|
+
"knip:production": "knip --production",
|
|
44
|
+
"lint": "eslint . --cache",
|
|
45
|
+
"lint:fast": "eslint . --config eslint.config.fast.js --cache",
|
|
46
|
+
"test": "jest",
|
|
47
|
+
"type-check": "tsc --noEmit",
|
|
48
|
+
"prepublishOnly": "yarn build && yarn type-check"
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"js-yaml": "^4.1.0",
|
|
52
|
+
"pack-config-diff": "^0.1.0",
|
|
53
|
+
"path-complete-extname": "^1.0.0",
|
|
54
|
+
"webpack-merge": "^5.8.0",
|
|
55
|
+
"yargs": "^17.7.2"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@babel/core": "7.29.0",
|
|
59
|
+
"@eslint/eslintrc": "^3.2.0",
|
|
60
|
+
"@eslint/js": "^9.37.0",
|
|
61
|
+
"@rspack/cli": "2.0.1",
|
|
62
|
+
"@rspack/core": "2.0.1",
|
|
63
|
+
"@swc/core": "1.15.33",
|
|
64
|
+
"@types/babel__core": "^7.20.5",
|
|
65
|
+
"@types/js-yaml": "^4.0.9",
|
|
66
|
+
"@types/node": "^24.5.2",
|
|
67
|
+
"@types/path-complete-extname": "^1.0.3",
|
|
68
|
+
"@types/webpack": "^5.28.5",
|
|
69
|
+
"@types/webpack-dev-server": "^4.7.2",
|
|
70
|
+
"@types/webpack-merge": "^5.0.0",
|
|
71
|
+
"@types/yargs": "^17.0.33",
|
|
72
|
+
"@typescript-eslint/eslint-plugin": "^8.46.0",
|
|
73
|
+
"@typescript-eslint/parser": "^8.46.0",
|
|
74
|
+
"babel-loader": "10.1.1",
|
|
75
|
+
"compression-webpack-plugin": "^9.0.0",
|
|
76
|
+
"css-loader": "7.1.4",
|
|
77
|
+
"esbuild-loader": "4.4.3",
|
|
78
|
+
"eslint": "^9.37.0",
|
|
79
|
+
"eslint-config-airbnb": "^19.0.4",
|
|
80
|
+
"eslint-config-prettier": "^10.1.8",
|
|
81
|
+
"eslint-plugin-import": "^2.32.0",
|
|
82
|
+
"eslint-plugin-jest": "^29.0.1",
|
|
83
|
+
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
84
|
+
"eslint-plugin-react": "^7.37.5",
|
|
85
|
+
"eslint-plugin-react-hooks": "^7.0.0",
|
|
86
|
+
"husky": "^9.1.7",
|
|
87
|
+
"jest": "^29.7.0",
|
|
88
|
+
"knip": "^5.64.2",
|
|
89
|
+
"lint-staged": "^15.2.10",
|
|
90
|
+
"memory-fs": "^0.5.0",
|
|
91
|
+
"mini-css-extract-plugin": "2.10.2",
|
|
92
|
+
"prettier": "^3.6.2",
|
|
93
|
+
"rspack-manifest-plugin": "5.2.1",
|
|
94
|
+
"sass-loader": "16.0.7",
|
|
95
|
+
"swc-loader": "0.2.7",
|
|
96
|
+
"thenify": "^3.3.1",
|
|
97
|
+
"ts-jest": "^29.4.5",
|
|
98
|
+
"typescript": "^5.9.2",
|
|
99
|
+
"webpack": "5.106.2",
|
|
100
|
+
"webpack-assets-manifest": "6.5.1",
|
|
101
|
+
"webpack-cli": "7.0.2",
|
|
102
|
+
"webpack-subresource-integrity": "5.1.0"
|
|
103
|
+
},
|
|
104
|
+
"peerDependencies": {
|
|
105
|
+
"@babel/core": "^7.17.9",
|
|
106
|
+
"@babel/plugin-transform-runtime": "^7.17.0",
|
|
107
|
+
"@babel/preset-env": "^7.16.11",
|
|
108
|
+
"@babel/runtime": "^7.17.9",
|
|
109
|
+
"@rspack/cli": "^1.0.0 || ^2.0.0-0",
|
|
110
|
+
"@rspack/core": "^1.0.0 || ^2.0.0-0",
|
|
111
|
+
"@rspack/plugin-react-refresh": "^1.0.0 || ^2.0.0-0",
|
|
112
|
+
"@swc/core": "^1.3.0",
|
|
113
|
+
"@types/babel__core": "^7.0.0",
|
|
114
|
+
"@types/webpack": "^5.0.0",
|
|
115
|
+
"babel-loader": "^8.2.4 || ^9.0.0 || ^10.0.0",
|
|
116
|
+
"compression-webpack-plugin": "^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0",
|
|
117
|
+
"css-loader": "^6.8.1 || ^7.0.0",
|
|
118
|
+
"esbuild": "^0.14.0 || ^0.15.0 || ^0.16.0 || ^0.17.0 || ^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0 || ^0.25.0 || ^0.26.0 || ^0.27.0",
|
|
119
|
+
"esbuild-loader": "^2.0.0 || ^3.0.0 || ^4.0.0",
|
|
120
|
+
"mini-css-extract-plugin": "^2.0.0",
|
|
121
|
+
"rspack-manifest-plugin": "^5.0.0",
|
|
122
|
+
"sass": "^1.50.0",
|
|
123
|
+
"sass-loader": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
|
|
124
|
+
"swc-loader": "^0.1.15 || ^0.2.0",
|
|
125
|
+
"terser-webpack-plugin": "^5.3.1",
|
|
126
|
+
"webpack": "^5.101.0",
|
|
127
|
+
"webpack-assets-manifest": "^5.0.6 || ^6.0.0",
|
|
128
|
+
"webpack-cli": "^4.9.2 || ^5.0.0 || ^6.0.0 || ^7.0.0",
|
|
129
|
+
"webpack-dev-server": "^5.2.2",
|
|
130
|
+
"webpack-subresource-integrity": "^5.1.0"
|
|
131
|
+
},
|
|
132
|
+
"peerDependenciesMeta": {
|
|
133
|
+
"@babel/core": {
|
|
134
|
+
"optional": true
|
|
135
|
+
},
|
|
136
|
+
"@babel/plugin-transform-runtime": {
|
|
137
|
+
"optional": true
|
|
138
|
+
},
|
|
139
|
+
"@babel/preset-env": {
|
|
140
|
+
"optional": true
|
|
141
|
+
},
|
|
142
|
+
"@babel/runtime": {
|
|
143
|
+
"optional": true
|
|
144
|
+
},
|
|
145
|
+
"@rspack/core": {
|
|
146
|
+
"optional": true
|
|
147
|
+
},
|
|
148
|
+
"@rspack/cli": {
|
|
149
|
+
"optional": true
|
|
150
|
+
},
|
|
151
|
+
"@rspack/plugin-react-refresh": {
|
|
152
|
+
"optional": true
|
|
153
|
+
},
|
|
154
|
+
"@swc/core": {
|
|
155
|
+
"optional": true
|
|
156
|
+
},
|
|
157
|
+
"@types/babel__core": {
|
|
158
|
+
"optional": true
|
|
159
|
+
},
|
|
160
|
+
"@types/webpack": {
|
|
161
|
+
"optional": true
|
|
162
|
+
},
|
|
163
|
+
"babel-loader": {
|
|
164
|
+
"optional": true
|
|
165
|
+
},
|
|
166
|
+
"compression-webpack-plugin": {
|
|
167
|
+
"optional": true
|
|
168
|
+
},
|
|
169
|
+
"css-loader": {
|
|
170
|
+
"optional": true
|
|
171
|
+
},
|
|
172
|
+
"esbuild": {
|
|
173
|
+
"optional": true
|
|
174
|
+
},
|
|
175
|
+
"esbuild-loader": {
|
|
176
|
+
"optional": true
|
|
177
|
+
},
|
|
178
|
+
"mini-css-extract-plugin": {
|
|
179
|
+
"optional": true
|
|
180
|
+
},
|
|
181
|
+
"rspack-manifest-plugin": {
|
|
182
|
+
"optional": true
|
|
183
|
+
},
|
|
184
|
+
"sass": {
|
|
185
|
+
"optional": true
|
|
186
|
+
},
|
|
187
|
+
"sass-loader": {
|
|
188
|
+
"optional": true
|
|
189
|
+
},
|
|
190
|
+
"swc-loader": {
|
|
191
|
+
"optional": true
|
|
192
|
+
},
|
|
193
|
+
"terser-webpack-plugin": {
|
|
194
|
+
"optional": true
|
|
195
|
+
},
|
|
196
|
+
"webpack": {
|
|
197
|
+
"optional": true
|
|
198
|
+
},
|
|
199
|
+
"webpack-assets-manifest": {
|
|
200
|
+
"optional": true
|
|
201
|
+
},
|
|
202
|
+
"webpack-cli": {
|
|
203
|
+
"optional": true
|
|
204
|
+
},
|
|
205
|
+
"webpack-dev-server": {
|
|
206
|
+
"optional": true
|
|
207
|
+
},
|
|
208
|
+
"webpack-subresource-integrity": {
|
|
209
|
+
"optional": true
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"packageManager": "yarn@1.22.22",
|
|
213
|
+
"lint-staged": {
|
|
214
|
+
"*.{js,jsx}": [
|
|
215
|
+
"eslint --fix",
|
|
216
|
+
"prettier --write"
|
|
217
|
+
],
|
|
218
|
+
"*.{ts,tsx}": [
|
|
219
|
+
"eslint --fix",
|
|
220
|
+
"prettier --write",
|
|
221
|
+
"node scripts/type-check-no-emit.js"
|
|
222
|
+
],
|
|
223
|
+
"*.{json,yml,yaml,md}": [
|
|
224
|
+
"prettier --write"
|
|
225
|
+
]
|
|
226
|
+
},
|
|
227
|
+
"engines": {
|
|
228
|
+
"node": "^20.19.0 || >=22.12.0",
|
|
229
|
+
"yarn": ">=1 <5"
|
|
230
|
+
},
|
|
231
|
+
"publishConfig": {
|
|
232
|
+
"access": "public"
|
|
233
|
+
}
|
|
234
|
+
}
|
data/shakapacker.gemspec
CHANGED
|
@@ -28,6 +28,6 @@ Gem::Specification.new do |s|
|
|
|
28
28
|
s.add_development_dependency "rubocop"
|
|
29
29
|
s.add_development_dependency "rubocop-performance"
|
|
30
30
|
|
|
31
|
-
s.files = `git ls-files -z CHANGELOG.md MIT-LICENSE README.md shakapacker.gemspec lib sig`.split("\x0")
|
|
31
|
+
s.files = `git ls-files -z CHANGELOG.md MIT-LICENSE README.md package.json shakapacker.gemspec lib sig`.split("\x0")
|
|
32
32
|
s.test_files = []
|
|
33
33
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: shakapacker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 10.1.0.rc.
|
|
4
|
+
version: 10.1.0.rc.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Heinemeier Hansson
|
|
@@ -208,6 +208,7 @@ files:
|
|
|
208
208
|
- lib/tasks/shakapacker/switch_bundler.rake
|
|
209
209
|
- lib/tasks/shakapacker/verify_config.rake
|
|
210
210
|
- lib/tasks/shakapacker/verify_install.rake
|
|
211
|
+
- package.json
|
|
211
212
|
- shakapacker.gemspec
|
|
212
213
|
- sig/shakapacker.rbs
|
|
213
214
|
- sig/shakapacker/commands.rbs
|
|
@@ -224,7 +225,7 @@ homepage: https://github.com/shakacode/shakapacker
|
|
|
224
225
|
licenses:
|
|
225
226
|
- MIT
|
|
226
227
|
metadata:
|
|
227
|
-
source_code_uri: https://github.com/shakacode/shakapacker/tree/v10.1.0-rc.
|
|
228
|
+
source_code_uri: https://github.com/shakacode/shakapacker/tree/v10.1.0-rc.1
|
|
228
229
|
rdoc_options: []
|
|
229
230
|
require_paths:
|
|
230
231
|
- lib
|