@embroider/webpack 3.2.1-unstable.f6078b1 → 3.2.2-unstable.138272d
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/package.json +6 -9
- package/src/options.js.map +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@embroider/webpack",
|
3
|
-
"version": "3.2.
|
3
|
+
"version": "3.2.2-unstable.138272d",
|
4
4
|
"private": false,
|
5
5
|
"description": "Builds EmberJS apps with Webpack",
|
6
6
|
"repository": {
|
@@ -19,9 +19,9 @@
|
|
19
19
|
"scripts": {},
|
20
20
|
"dependencies": {
|
21
21
|
"@babel/core": "^7.14.5",
|
22
|
-
"@embroider/babel-loader-9": "3.1.
|
23
|
-
"@embroider/hbs-loader": "3.0.
|
24
|
-
"@embroider/shared-internals": "2.5.
|
22
|
+
"@embroider/babel-loader-9": "3.1.2-unstable.138272d",
|
23
|
+
"@embroider/hbs-loader": "3.0.4-unstable.138272d",
|
24
|
+
"@embroider/shared-internals": "2.5.2-unstable.138272d",
|
25
25
|
"@types/supports-color": "^8.1.0",
|
26
26
|
"assert-never": "^1.2.1",
|
27
27
|
"babel-loader": "^8.2.2",
|
@@ -42,7 +42,7 @@
|
|
42
42
|
"thread-loader": "^3.0.4"
|
43
43
|
},
|
44
44
|
"devDependencies": {
|
45
|
-
"@embroider/core": "3.
|
45
|
+
"@embroider/core": "3.4.1-unstable.138272d",
|
46
46
|
"@types/csso": "^3.5.1",
|
47
47
|
"@types/debug": "^4.1.5",
|
48
48
|
"@types/fs-extra": "^9.0.12",
|
@@ -54,13 +54,10 @@
|
|
54
54
|
"webpack": "^5.38.1"
|
55
55
|
},
|
56
56
|
"peerDependencies": {
|
57
|
-
"@embroider/core": "3.
|
57
|
+
"@embroider/core": "3.4.1-unstable.138272d",
|
58
58
|
"webpack": "^5.0.0"
|
59
59
|
},
|
60
60
|
"engines": {
|
61
61
|
"node": "12.* || 14.* || >= 16"
|
62
|
-
},
|
63
|
-
"volta": {
|
64
|
-
"extends": "../../package.json"
|
65
62
|
}
|
66
63
|
}
|
package/src/options.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"options.js","sourceRoot":"","sources":["options.ts"],"names":[],"mappings":"","sourcesContent":["import type { Configuration } from 'webpack';\n\n// [babel-loader](https://webpack.js.org/loaders/babel-loader/#options) specific options.\n// This does not include the babel configuration, which is pulled from the app, only the\n// additional options that `babel-loader` supports.\nexport interface BabelLoaderOptions {\n cacheDirectory?: boolean | string;\n cacheIdentifier?: string;\n cacheCompression?: boolean;\n customize?: string;\n}\n\nexport interface Options {\n // This allows you to extend the webpack config in arbitrary ways. Your\n // changes will get applied on top of the defaults provided by\n // @embroider/webpack.\n webpackConfig: Configuration;\n\n // the base public URL for your assets in production. Use this when you want\n // to serve all your assets from a different origin (like a CDN) than your\n // actual index.html will be served on.\n //\n // This should be a URL ending in \"/\".\n //\n // For example:\n //\n // 1. If your build produces the file \"./dist/assets/chunk.123.js\"\n // 2. And you set publicAssetURL to \"https://cdn/\"\n // 3. Browsers will try to locate the file at\n // \"https://cdn/assets/chunk.123.js\".\n //\n // Notice that `publicAssetURL` gets applied relative to your whole built\n // application -- not a particular subdirectory like \"/assets\". If you don't\n // want a part of the path to show up in the public URLs, you should adjust the\n // actual locations of the output files to remove that directory. For example:\n //\n // webpackConfig: {\n // output: {\n // // This overrides our default of \"assets/chunk.[chunkhash].js\"\n // // to move the chunks to the root of the app, eliminating the assets subdirectory.\n // filename: `mychunk.[chunkhash].js`,\n // chunkFilename: `mychunk.[chunkhash].js`,\n // },\n //
|
1
|
+
{"version":3,"file":"options.js","sourceRoot":"","sources":["options.ts"],"names":[],"mappings":"","sourcesContent":["import type { Configuration } from 'webpack';\n\n// [babel-loader](https://webpack.js.org/loaders/babel-loader/#options) specific options.\n// This does not include the babel configuration, which is pulled from the app, only the\n// additional options that `babel-loader` supports.\nexport interface BabelLoaderOptions {\n cacheDirectory?: boolean | string;\n cacheIdentifier?: string;\n cacheCompression?: boolean;\n customize?: string;\n}\n\nexport interface Options {\n // This allows you to extend the webpack config in arbitrary ways. Your\n // changes will get applied on top of the defaults provided by\n // @embroider/webpack.\n webpackConfig: Configuration;\n\n // the base public URL for your assets in production. Use this when you want\n // to serve all your assets from a different origin (like a CDN) than your\n // actual index.html will be served on.\n //\n // This should be a URL ending in \"/\".\n //\n // For example:\n //\n // 1. If your build produces the file \"./dist/assets/chunk.123.js\"\n // 2. And you set publicAssetURL to \"https://cdn/\"\n // 3. Browsers will try to locate the file at\n // \"https://cdn/assets/chunk.123.js\".\n //\n // Notice that `publicAssetURL` gets applied relative to your whole built\n // application -- not a particular subdirectory like \"/assets\". If you don't\n // want a part of the path to show up in the public URLs, you should adjust the\n // actual locations of the output files to remove that directory. For example:\n //\n // webpackConfig: {\n // output: {\n // // This overrides our default of \"assets/chunk.[chunkhash].js\"\n // // to move the chunks to the root of the app, eliminating the assets subdirectory.\n // filename: `mychunk.[chunkhash].js`,\n // chunkFilename: `mychunk.[chunkhash].js`,\n // },\n // },\n // publicAssetURL: \"https://cdn/\",\n //\n // The above example will result in CDN URLs like \"https://cdn/mychunk.123.js\".\n //\n publicAssetURL?: string;\n\n // [thread-loader](https://github.com/webpack-contrib/thread-loader) options.\n // If set to false, `thread-loader` will not be used. If set to an object, it\n // will be used to configure `thread-loader`. If not specified,\n // `thread-loader` will be used with a default configuration.\n //\n // Note that setting `JOBS=0` in the environment will also disable\n // `thread-loader`.\n threadLoaderOptions?: object | false;\n\n babelLoaderOptions?: BabelLoaderOptions;\n\n /**\n * Options for [`css-loader`](https://webpack.js.org/loaders/css-loader)\n */\n cssLoaderOptions?: object;\n\n /**\n * Options for [`style-loader`](https://webpack.js.org/loaders/style-loader/).\n *\n * Note that [`mini-css-extract-plugin`](https://webpack.js.org/plugins/mini-css-extract-plugin/)\n * is used instead of `style-loader` in production builds.\n */\n styleLoaderOptions?: object;\n}\n"]}
|