@roots/bud-build 5.0.0 → 5.1.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.
Files changed (64) hide show
  1. package/lib/cjs/Build/config.js +247 -252
  2. package/lib/cjs/Build/index.js +120 -77
  3. package/lib/cjs/Build/items.js +14 -18
  4. package/lib/cjs/Build/loaders.js +4 -3
  5. package/lib/cjs/Build/rules.js +129 -94
  6. package/lib/cjs/Item/index.js +16 -9
  7. package/lib/cjs/Item/item.dependencies.js +0 -1
  8. package/lib/cjs/Item/item.interface.js +0 -1
  9. package/lib/cjs/Loader/index.js +27 -4
  10. package/lib/cjs/Rule/index.js +178 -81
  11. package/lib/cjs/index.js +22 -5
  12. package/lib/cjs/shared/Base.js +0 -1
  13. package/lib/tsconfig.tsbuildinfo +1 -1
  14. package/package.json +9 -26
  15. package/types/Build/config.d.ts.map +1 -1
  16. package/types/Build/index.d.ts +19 -4
  17. package/types/Build/index.d.ts.map +1 -1
  18. package/types/Build/items.d.ts +3 -3
  19. package/types/Build/items.d.ts.map +1 -1
  20. package/types/Build/loaders.d.ts.map +1 -1
  21. package/types/Build/rules.d.ts +38 -21
  22. package/types/Build/rules.d.ts.map +1 -1
  23. package/types/Item/index.d.ts +1 -1
  24. package/types/Item/index.d.ts.map +1 -1
  25. package/types/Rule/index.d.ts +122 -24
  26. package/types/Rule/index.d.ts.map +1 -1
  27. package/types/shared/Base.d.ts.map +1 -1
  28. package/lib/cjs/Build/config.js.map +0 -1
  29. package/lib/cjs/Build/index.js.map +0 -1
  30. package/lib/cjs/Build/items.js.map +0 -1
  31. package/lib/cjs/Build/loaders.js.map +0 -1
  32. package/lib/cjs/Build/rules.js.map +0 -1
  33. package/lib/cjs/Item/index.js.map +0 -1
  34. package/lib/cjs/Item/item.dependencies.js.map +0 -1
  35. package/lib/cjs/Item/item.interface.js.map +0 -1
  36. package/lib/cjs/Loader/index.js.map +0 -1
  37. package/lib/cjs/Rule/index.js.map +0 -1
  38. package/lib/cjs/index.js.map +0 -1
  39. package/lib/cjs/shared/Base.js.map +0 -1
  40. package/lib/esm/Build/config.js +0 -263
  41. package/lib/esm/Build/config.js.map +0 -1
  42. package/lib/esm/Build/index.js +0 -133
  43. package/lib/esm/Build/index.js.map +0 -1
  44. package/lib/esm/Build/items.js +0 -119
  45. package/lib/esm/Build/items.js.map +0 -1
  46. package/lib/esm/Build/loaders.js +0 -55
  47. package/lib/esm/Build/loaders.js.map +0 -1
  48. package/lib/esm/Build/rules.js +0 -129
  49. package/lib/esm/Build/rules.js.map +0 -1
  50. package/lib/esm/Item/index.js +0 -80
  51. package/lib/esm/Item/index.js.map +0 -1
  52. package/lib/esm/Item/item.dependencies.js +0 -4
  53. package/lib/esm/Item/item.dependencies.js.map +0 -1
  54. package/lib/esm/Item/item.interface.js +0 -2
  55. package/lib/esm/Item/item.interface.js.map +0 -1
  56. package/lib/esm/Loader/index.js +0 -49
  57. package/lib/esm/Loader/index.js.map +0 -1
  58. package/lib/esm/Rule/index.js +0 -155
  59. package/lib/esm/Rule/index.js.map +0 -1
  60. package/lib/esm/index.js +0 -26
  61. package/lib/esm/index.js.map +0 -1
  62. package/lib/esm/shared/Base.js +0 -8
  63. package/lib/esm/shared/Base.js.map +0 -1
  64. package/lib/tsconfig-esm.tsbuildinfo +0 -1
@@ -1,7 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.config = void 0;
4
- const tslib_1 = require("tslib");
5
4
  const bud_support_1 = require("@roots/bud-support");
6
5
  const path_1 = require("path");
7
6
  const { dirname } = path_1.posix;
@@ -12,256 +11,252 @@ const { dirname } = path_1.posix;
12
11
  *
13
12
  * @public
14
13
  */
15
- function config(app) {
16
- return (0, tslib_1.__awaiter)(this, void 0, void 0, function* () {
17
- app.hooks
18
- .async('build', () => (0, tslib_1.__awaiter)(this, void 0, void 0, function* () {
19
- const entry = yield app.hooks.filterAsync('build.entry');
20
- const plugins = yield app.hooks.filterAsync('build.plugins');
21
- const resolve = yield app.hooks.filterAsync('build.resolve');
22
- return {
23
- entry,
24
- plugins,
25
- resolve,
26
- bail: app.hooks.filter('build.bail'),
27
- cache: app.hooks.filter('build.cache'),
28
- context: app.hooks.filter('build.context'),
29
- devtool: app.hooks.filter('build.devtool'),
30
- experiments: app.hooks.filter('build.experiments'),
31
- externals: app.hooks.filter('build.externals'),
32
- infrastructureLogging: app.hooks.filter('build.infrastructureLogging'),
33
- mode: app.hooks.filter('build.mode'),
34
- module: app.hooks.filter('build.module'),
35
- name: app.hooks.filter('build.name'),
36
- node: app.hooks.filter('build.node'),
37
- output: app.hooks.filter('build.output'),
38
- optimization: app.hooks.filter('build.optimization'),
39
- parallelism: app.hooks.filter('build.parallelism'),
40
- performance: app.hooks.filter('build.performance'),
41
- profile: app.hooks.filter('build.profile'),
42
- recordsPath: app.hooks.filter('build.recordsPath'),
43
- stats: app.hooks.filter('build.stats'),
44
- target: app.hooks.filter('build.target'),
45
- watch: app.hooks.filter('build.watch'),
46
- watchOptions: app.hooks.filter('build.watchOptions'),
47
- };
48
- }))
49
- /**
50
- * build.bail
51
- */
52
- .hooks.on('build.bail', () => app.store.get('build.bail'))
53
- /**
54
- * build.context
55
- */
56
- .hooks.on('build.context', () => app.path('project'))
57
- /**
58
- * build.devtool
59
- */
60
- .hooks.on('build.devtool', () => app.store.get('build.devtool'))
61
- /**
62
- * build.infrastructureLogging
63
- */
64
- .hooks.on('build.infrastructureLogging', () => app.store.get('build.infrastructureLogging'))
65
- /**
66
- * build.mode
67
- */
68
- .hooks.on('build.mode', () => app.mode)
69
- /**
70
- * build.module
71
- */
72
- .hooks.on('build.module', () => ({
73
- rules: app.hooks.filter('build.module.rules'),
74
- }))
75
- /**
76
- * build.module.rules
77
- */
78
- .hooks.on('build.module.rules', () => [
79
- ...app.hooks.filter('build.module.rules.before'),
80
- {
81
- oneOf: app.hooks.filter('build.module.rules.oneOf'),
82
- },
83
- ...app.hooks.filter('build.module.rules.after'),
84
- ])
85
- /**
86
- * build.module.rules[1].oneOf
87
- */
88
- .hooks.on('build.module.rules.oneOf', () => Object.values(app.build.rules).map(rule => rule.make(app)))
89
- /**
90
- * build.module.rules[0]
91
- */
92
- .hooks.on('build.module.rules.before', () => [
93
- {
94
- test: /\.[cm]?(jsx?|tsx?)$/,
95
- parser: { requireEnsure: false },
96
- },
97
- ])
98
- /**
99
- * build.module.rules[2]
100
- */
101
- .hooks.on('build.module.rules.after', () => [])
102
- /**
103
- * build.name
104
- */
105
- .hooks.on('build.name', () => app.name)
106
- /**
107
- * build.node
108
- */
109
- .hooks.on('build.node', () => false)
110
- /**
111
- * build.optimization
112
- */
113
- .hooks.on('build.optimization', () => ({
114
- emitOnErrors: app.hooks.filter('build.optimization.emitOnErrors'),
115
- minimize: app.hooks.filter('build.optimization.minimize'),
116
- minimizer: app.hooks.filter('build.optimization.minimizer'),
117
- moduleIds: app.hooks.filter('build.optimization.moduleIds'),
118
- runtimeChunk: app.hooks.filter('build.optimization.runtimeChunk'),
119
- splitChunks: app.hooks.filter('build.optimization.splitChunks'),
120
- }))
121
- /**
122
- * build.optimization.emitOnErrors
123
- */
124
- .hooks.on('build.optimization.emitOnErrors', () => app.store.get('build.optimization.emitOnErrors'))
125
- /**
126
- * build.optimization.minimize
127
- */
128
- .hooks.on('build.optimization.minimize', () => app.store.is('features.minimize', true))
129
- /**
130
- * build.optimization.minimizer
131
- */
132
- .hooks.on('build.optimization.minimizer', () => ['...'])
133
- /**
134
- * build.optimization.moduleIds
135
- */
136
- .hooks.on('build.optimization.moduleIds', () => app.store.get('build.optimization.moduleIds'))
137
- /**
138
- * build.optimization.removeEmptyChunks
139
- */
140
- .hooks.on('build.optimization.removeEmptyChunks', () => app.store.get('build.optimization.removeEmptyChunks'))
141
- /**
142
- * build.optimization.runtimeChunk
143
- */
144
- .hooks.on('build.optimization.runtimeChunk', () => app.store.is('features.runtimeChunk', true))
145
- /**
146
- * build.optimization.splitChunks
147
- */
148
- .hooks.on('build.optimization.splitChunks', () => app.store.is('features.splitChunks', true))
149
- /**
150
- * build.output
151
- */
152
- .hooks.on('build.output', () => ({
153
- assetModuleFilename: app.hooks.filter('build.output.assetModuleFilename'),
154
- chunkFilename: app.hooks.filter('build.output.chunkFilename'),
155
- clean: app.hooks.filter('build.output.clean'),
156
- filename: app.hooks.filter('build.output.filename'),
157
- path: app.hooks.filter('build.output.path'),
158
- pathinfo: app.hooks.filter('build.output.pathinfo'),
159
- publicPath: app.hooks.filter('build.output.publicPath'),
160
- }))
161
- /**
162
- * build.output.assetModuleFilename
163
- */
164
- .hooks.on('build.output.assetModuleFilename', () => app.isProduction && app.store.is('features.hash', true)
165
- ? `assets/${app.store.get('hashFormat')}[ext]`
166
- : app.store.get('fileFormat'))
167
- .hooks.on('build.output.clean', () => app.store.get('build.output.clean'))
168
- /**
169
- * build.output.filename
170
- */
171
- .hooks.on('build.output.filename', () => `${app.store.is('features.hash', true) && app.isProduction
172
- ? app.store.get('hashFormat')
173
- : app.store.get('fileFormat')}.js`)
174
- /**
175
- * build.output.path
176
- */
177
- .hooks.on('build.output.path', () => app.path('dist'))
178
- /**
179
- * build.output.pathinfo
180
- */
181
- .hooks.on('build.output.pathinfo', () => app.store.get('build.output.pathinfo'))
182
- /**
183
- * build.output.publicPath
184
- */
185
- .hooks.on('build.output.publicPath', () => app.store.get('location.publicPath'))
186
- /**
187
- * Parallelism
188
- */
189
- .hooks.on('build.parallelism', () => app.store.get('build.parallelism'))
190
- /**
191
- * build.performance
192
- */
193
- .hooks.on('build.performance', () => app.store.get('build.performance'))
194
- .hooks.async('build.plugins', () => (0, tslib_1.__awaiter)(this, void 0, void 0, function* () {
195
- const newExtensions = yield app.extensions.make();
196
- return newExtensions;
197
- }))
198
- /**
199
- * build.profile
200
- */
201
- .hooks.on('build.profile', () => app.store.get('build.profile'))
202
- /**
203
- * build.recordsPath
204
- */
205
- .hooks.on('build.recordsPath', () => app.path('storage', app.name, `modules.json`))
206
- .hooks.async('build.resolve', () => (0, tslib_1.__awaiter)(this, void 0, void 0, function* () {
207
- const modules = yield app.hooks.filterAsync('build.resolve.modules');
208
- const alias = yield app.hooks.filter('build.resolve.alias');
209
- const extensions = app.hooks.filter('build.resolve.extensions');
210
- return { modules, alias, extensions };
211
- }))
212
- /**
213
- * build.resolve.alias
214
- */
215
- .hooks.on('build.resolve.alias', () => ({}))
216
- /**
217
- * build.resolve.modules
218
- */
219
- .hooks.async('build.resolve.modules', (value) => (0, tslib_1.__awaiter)(this, void 0, void 0, function* () {
220
- var _a, _b, _c, _d;
221
- const budPkg = yield (0, bud_support_1.pkgUp)({
222
- cwd: require.resolve('@roots/bud'),
223
- });
224
- const bud = dirname(budPkg);
225
- const roots = bud
226
- .split('/')
227
- .splice(0, bud.split('/').length - 1)
228
- .join('/');
229
- const peers = roots
230
- .split('/')
231
- .splice(0, roots.split('/').length - 1)
232
- .join('/');
233
- return [
234
- ...new Set([
235
- ...(value !== null && value !== void 0 ? value : []),
236
- app.hooks.filter('location.src'),
237
- app.hooks.filter('location.modules'),
238
- peers,
239
- ...((_b = (_a = app.project) === null || _a === void 0 ? void 0 : _a.get('resolve')) !== null && _b !== void 0 ? _b : []),
240
- ...((_d = (_c = app.root) === null || _c === void 0 ? void 0 : _c.project.get('resolve')) !== null && _d !== void 0 ? _d : []),
241
- ]),
242
- ];
243
- }))
244
- /**
245
- * build.resolve.extensions
246
- */
247
- .hooks.on('build.resolve.extensions', () => app.store.get('build.resolve.extensions'))
248
- /**
249
- * build.stats
250
- */
251
- .hooks.on('build.stats', () => app.store.get('build.stats'))
252
- /**
253
- * build.target
254
- */
255
- .hooks.on('build.target', () => `browserslist:${app.path('project', 'package.json')}`)
256
- /**
257
- * build.watch
258
- */
259
- .hooks.on('build.watch', () => app.store.get('build.watch'))
260
- /**
261
- * build.watchOptions
262
- */
263
- .hooks.on('build.watchOptions', () => app.store.get('build.watchOptions'));
264
- });
14
+ async function config(app) {
15
+ app.hooks
16
+ .async('build', async () => {
17
+ const entry = await app.hooks.filterAsync('build.entry');
18
+ const plugins = await app.hooks.filterAsync('build.plugins');
19
+ const resolve = await app.hooks.filterAsync('build.resolve');
20
+ return {
21
+ entry,
22
+ plugins,
23
+ resolve,
24
+ bail: app.hooks.filter('build.bail'),
25
+ cache: app.hooks.filter('build.cache'),
26
+ context: app.hooks.filter('build.context'),
27
+ devtool: app.hooks.filter('build.devtool'),
28
+ experiments: app.hooks.filter('build.experiments'),
29
+ externals: app.hooks.filter('build.externals'),
30
+ infrastructureLogging: app.hooks.filter('build.infrastructureLogging'),
31
+ mode: app.hooks.filter('build.mode'),
32
+ module: app.hooks.filter('build.module'),
33
+ name: app.hooks.filter('build.name'),
34
+ node: app.hooks.filter('build.node'),
35
+ output: app.hooks.filter('build.output'),
36
+ optimization: app.hooks.filter('build.optimization'),
37
+ parallelism: app.hooks.filter('build.parallelism'),
38
+ performance: app.hooks.filter('build.performance'),
39
+ profile: app.hooks.filter('build.profile'),
40
+ recordsPath: app.hooks.filter('build.recordsPath'),
41
+ stats: app.hooks.filter('build.stats'),
42
+ target: app.hooks.filter('build.target'),
43
+ watch: app.hooks.filter('build.watch'),
44
+ watchOptions: app.hooks.filter('build.watchOptions'),
45
+ };
46
+ })
47
+ /**
48
+ * build.bail
49
+ */
50
+ .hooks.on('build.bail', () => app.store.get('build.bail'))
51
+ /**
52
+ * build.context
53
+ */
54
+ .hooks.on('build.context', () => app.path('project'))
55
+ /**
56
+ * build.devtool
57
+ */
58
+ .hooks.on('build.devtool', () => app.store.get('build.devtool'))
59
+ /**
60
+ * build.infrastructureLogging
61
+ */
62
+ .hooks.on('build.infrastructureLogging', () => app.store.get('build.infrastructureLogging'))
63
+ /**
64
+ * build.mode
65
+ */
66
+ .hooks.on('build.mode', () => app.mode)
67
+ /**
68
+ * build.module
69
+ */
70
+ .hooks.on('build.module', () => ({
71
+ rules: app.hooks.filter('build.module.rules'),
72
+ }))
73
+ /**
74
+ * build.module.rules
75
+ */
76
+ .hooks.on('build.module.rules', () => [
77
+ ...app.hooks.filter('build.module.rules.before'),
78
+ {
79
+ oneOf: app.hooks.filter('build.module.rules.oneOf'),
80
+ },
81
+ ...app.hooks.filter('build.module.rules.after'),
82
+ ])
83
+ /**
84
+ * build.module.rules[1].oneOf
85
+ */
86
+ .hooks.on('build.module.rules.oneOf', () => Object.values(app.build.rules).map(rule => rule.make()))
87
+ /**
88
+ * build.module.rules[0]
89
+ */
90
+ .hooks.on('build.module.rules.before', () => [
91
+ {
92
+ test: /\.[cm]?(jsx?|tsx?)$/,
93
+ parser: { requireEnsure: false },
94
+ },
95
+ ])
96
+ /**
97
+ * build.module.rules[2]
98
+ */
99
+ .hooks.on('build.module.rules.after', () => [])
100
+ /**
101
+ * build.name
102
+ */
103
+ .hooks.on('build.name', () => app.name)
104
+ /**
105
+ * build.node
106
+ */
107
+ .hooks.on('build.node', () => false)
108
+ /**
109
+ * build.optimization
110
+ */
111
+ .hooks.on('build.optimization', () => ({
112
+ emitOnErrors: app.hooks.filter('build.optimization.emitOnErrors'),
113
+ minimize: app.hooks.filter('build.optimization.minimize'),
114
+ minimizer: app.hooks.filter('build.optimization.minimizer'),
115
+ moduleIds: app.hooks.filter('build.optimization.moduleIds'),
116
+ runtimeChunk: app.hooks.filter('build.optimization.runtimeChunk'),
117
+ splitChunks: app.hooks.filter('build.optimization.splitChunks'),
118
+ }))
119
+ /**
120
+ * build.optimization.emitOnErrors
121
+ */
122
+ .hooks.on('build.optimization.emitOnErrors', () => app.store.get('build.optimization.emitOnErrors'))
123
+ /**
124
+ * build.optimization.minimize
125
+ */
126
+ .hooks.on('build.optimization.minimize', () => app.store.is('features.minimize', true))
127
+ /**
128
+ * build.optimization.minimizer
129
+ */
130
+ .hooks.on('build.optimization.minimizer', () => ['...'])
131
+ /**
132
+ * build.optimization.moduleIds
133
+ */
134
+ .hooks.on('build.optimization.moduleIds', () => app.store.get('build.optimization.moduleIds'))
135
+ /**
136
+ * build.optimization.removeEmptyChunks
137
+ */
138
+ .hooks.on('build.optimization.removeEmptyChunks', () => app.store.get('build.optimization.removeEmptyChunks'))
139
+ /**
140
+ * build.optimization.runtimeChunk
141
+ */
142
+ .hooks.on('build.optimization.runtimeChunk', () => app.store.is('features.runtimeChunk', true))
143
+ /**
144
+ * build.optimization.splitChunks
145
+ */
146
+ .hooks.on('build.optimization.splitChunks', () => app.store.is('features.splitChunks', true))
147
+ /**
148
+ * build.output
149
+ */
150
+ .hooks.on('build.output', () => ({
151
+ assetModuleFilename: app.hooks.filter('build.output.assetModuleFilename'),
152
+ chunkFilename: app.hooks.filter('build.output.chunkFilename'),
153
+ clean: app.hooks.filter('build.output.clean'),
154
+ filename: app.hooks.filter('build.output.filename'),
155
+ path: app.hooks.filter('build.output.path'),
156
+ pathinfo: app.hooks.filter('build.output.pathinfo'),
157
+ publicPath: app.hooks.filter('build.output.publicPath'),
158
+ }))
159
+ /**
160
+ * build.output.assetModuleFilename
161
+ */
162
+ .hooks.on('build.output.assetModuleFilename', () => app.isProduction && app.store.is('features.hash', true)
163
+ ? `assets/${app.store.get('hashFormat')}[ext]`
164
+ : app.store.get('fileFormat'))
165
+ .hooks.on('build.output.clean', () => app.store.get('build.output.clean'))
166
+ /**
167
+ * build.output.filename
168
+ */
169
+ .hooks.on('build.output.filename', () => `${app.store.is('features.hash', true) && app.isProduction
170
+ ? app.store.get('hashFormat')
171
+ : app.store.get('fileFormat')}.js`)
172
+ /**
173
+ * build.output.path
174
+ */
175
+ .hooks.on('build.output.path', () => app.path('dist'))
176
+ /**
177
+ * build.output.pathinfo
178
+ */
179
+ .hooks.on('build.output.pathinfo', () => app.store.get('build.output.pathinfo'))
180
+ /**
181
+ * build.output.publicPath
182
+ */
183
+ .hooks.on('build.output.publicPath', () => app.store.get('location.publicPath'))
184
+ /**
185
+ * Parallelism
186
+ */
187
+ .hooks.on('build.parallelism', () => app.store.get('build.parallelism'))
188
+ /**
189
+ * build.performance
190
+ */
191
+ .hooks.on('build.performance', () => app.store.get('build.performance'))
192
+ .hooks.async('build.plugins', async () => {
193
+ const newExtensions = await app.extensions.make();
194
+ return newExtensions;
195
+ })
196
+ /**
197
+ * build.profile
198
+ */
199
+ .hooks.on('build.profile', () => app.store.get('build.profile'))
200
+ /**
201
+ * build.recordsPath
202
+ */
203
+ .hooks.on('build.recordsPath', () => app.path('storage', app.name, `modules.json`))
204
+ .hooks.async('build.resolve', async () => {
205
+ const modules = await app.hooks.filterAsync('build.resolve.modules');
206
+ const alias = await app.hooks.filter('build.resolve.alias');
207
+ const extensions = app.hooks.filter('build.resolve.extensions');
208
+ return { modules, alias, extensions };
209
+ })
210
+ /**
211
+ * build.resolve.alias
212
+ */
213
+ .hooks.on('build.resolve.alias', () => ({}))
214
+ /**
215
+ * build.resolve.modules
216
+ */
217
+ .hooks.async('build.resolve.modules', async (value) => {
218
+ const budPkg = await (0, bud_support_1.pkgUp)({
219
+ cwd: require.resolve('@roots/bud'),
220
+ });
221
+ const bud = dirname(budPkg);
222
+ const roots = bud
223
+ .split('/')
224
+ .splice(0, bud.split('/').length - 1)
225
+ .join('/');
226
+ const peers = roots
227
+ .split('/')
228
+ .splice(0, roots.split('/').length - 1)
229
+ .join('/');
230
+ return [
231
+ ...new Set([
232
+ ...(value ?? []),
233
+ app.hooks.filter('location.src'),
234
+ app.hooks.filter('location.modules'),
235
+ peers,
236
+ ...(app.project?.get('resolve') ?? []),
237
+ ...(app.root?.project.get('resolve') ?? []),
238
+ ]),
239
+ ];
240
+ })
241
+ /**
242
+ * build.resolve.extensions
243
+ */
244
+ .hooks.on('build.resolve.extensions', () => app.store.get('build.resolve.extensions'))
245
+ /**
246
+ * build.stats
247
+ */
248
+ .hooks.on('build.stats', () => app.store.get('build.stats'))
249
+ /**
250
+ * build.target
251
+ */
252
+ .hooks.on('build.target', () => `browserslist:${app.path('project', 'package.json')}`)
253
+ /**
254
+ * build.watch
255
+ */
256
+ .hooks.on('build.watch', () => app.store.get('build.watch'))
257
+ /**
258
+ * build.watchOptions
259
+ */
260
+ .hooks.on('build.watchOptions', () => app.store.get('build.watchOptions'));
265
261
  }
266
262
  exports.config = config;
267
- //# sourceMappingURL=config.js.map