@merkur/tool-webpack 0.34.0 → 0.36.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.
- package/CHANGELOG.md +5 -5
- package/module/babelLoader.cjs +11 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,22 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
# [0.
|
|
6
|
+
# [0.36.0](https://github.com/mjancarik/merkur/compare/v0.35.13...v0.36.0) (2024-05-21)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @merkur/tool-webpack
|
|
9
9
|
|
|
10
|
+
# [0.35.0](https://github.com/mjancarik/merkur/compare/v0.34.6...v0.35.0) (2024-04-09)
|
|
10
11
|
|
|
12
|
+
**Note:** Version bump only for package @merkur/tool-webpack
|
|
11
13
|
|
|
14
|
+
# [0.34.0](https://github.com/mjancarik/merkur/compare/v0.33.0...v0.34.0) (2023-10-11)
|
|
12
15
|
|
|
16
|
+
**Note:** Version bump only for package @merkur/tool-webpack
|
|
13
17
|
|
|
14
18
|
# [0.33.0](https://github.com/mjancarik/merkur/compare/v0.32.1...v0.33.0) (2023-08-10)
|
|
15
19
|
|
|
16
20
|
**Note:** Version bump only for package @merkur/tool-webpack
|
|
17
21
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
22
|
# [0.32.0](https://github.com/mjancarik/merkur/compare/v0.31.1...v0.32.0) (2023-07-14)
|
|
23
23
|
|
|
24
24
|
### Features
|
package/module/babelLoader.cjs
CHANGED
|
@@ -52,9 +52,13 @@ function createESTransformation(
|
|
|
52
52
|
nodeModulesDir,
|
|
53
53
|
`@merkur/core/lib/index.${esVersion}.mjs`,
|
|
54
54
|
),
|
|
55
|
+
'@merkur/plugin-component/helpers': path.join(
|
|
56
|
+
nodeModulesDir,
|
|
57
|
+
`@merkur/plugin-component/lib/helpers.${esVersion}.mjs`,
|
|
58
|
+
),
|
|
55
59
|
'@merkur/plugin-component': path.join(
|
|
56
60
|
nodeModulesDir,
|
|
57
|
-
`@merkur/plugin-component/lib/index.mjs`,
|
|
61
|
+
`@merkur/plugin-component/lib/index.${esVersion}.mjs`,
|
|
58
62
|
),
|
|
59
63
|
'@merkur/plugin-event-emitter': path.join(
|
|
60
64
|
nodeModulesDir,
|
|
@@ -111,7 +115,12 @@ function createESTransformation(
|
|
|
111
115
|
test: /\.(js|ts|tsx|mjs|jsx)$/,
|
|
112
116
|
exclude: (modulePath) =>
|
|
113
117
|
/node_modules/.test(modulePath) &&
|
|
114
|
-
!/node_modules\/(abort-controller|event-target-shim)/.test(
|
|
118
|
+
!/node_modules\/(abort-controller|event-target-shim)/.test(
|
|
119
|
+
modulePath,
|
|
120
|
+
) &&
|
|
121
|
+
!/node_modules\/@merkur\/(svelte|uhtml|preact|vanilla)/.test(
|
|
122
|
+
modulePath,
|
|
123
|
+
),
|
|
115
124
|
use: {
|
|
116
125
|
loader: require.resolve('babel-loader'),
|
|
117
126
|
options: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@merkur/tool-webpack",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.36.0",
|
|
4
4
|
"description": "Merkur tool webpack.",
|
|
5
5
|
"main": "index.cjs",
|
|
6
6
|
"scripts": {
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"@merkur/tools": "*"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "2471f91d8249ae75e49b2a0da8d0deb93062f014"
|
|
60
60
|
}
|