@windwalker-io/core 4.2.0 → 4.2.2

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 (55) hide show
  1. package/LICENSE +19 -19
  2. package/dist/debugger/Dashboard-Bm7ihi81.js +1 -0
  3. package/dist/debugger/Database-BGuRRq-L.js +36 -0
  4. package/dist/debugger/DefaultLayout-DviqbPNR.js +1 -0
  5. package/dist/debugger/Events-CNF6gvg0.js +1 -0
  6. package/dist/debugger/KeyValueTable-BfTkP1Rg.js +1 -0
  7. package/dist/debugger/Request-yQA1-Fkb.js +1 -0
  8. package/dist/debugger/Routing-C5mAPB17.js +1 -0
  9. package/dist/debugger/System-JFuNpoZY.js +1 -0
  10. package/dist/debugger/Timeline-Uii-K9v_.js +1 -0
  11. package/dist/debugger/debugger-ChQADeB6.js +2 -0
  12. package/dist/debugger/debugger.js +564 -0
  13. package/dist/debugger/system.min.js +5 -0
  14. package/dist/debugger/utilities-jMzguz3m.js +1 -0
  15. package/dist/debugger/vue-animate.min-BkEL-t1R.js +9 -0
  16. package/dist/debugger/windwalker-logo-h-w.svg +1 -0
  17. package/dist/debugger-console.css +6 -0
  18. package/dist/next.d.ts +112 -0
  19. package/dist/next.js +576 -0
  20. package/package.json +11 -4
  21. package/src/app/app.ts +43 -0
  22. package/src/asset-bundler.mjs +114 -114
  23. package/src/debugger/types/global.d.js +2 -2
  24. package/src/index.mjs +11 -11
  25. package/src/legacy/4.0/js-sync.mjs +74 -74
  26. package/src/next/fusion/index.ts +2 -2
  27. package/src/next/fusion/plugins/assets.ts +29 -29
  28. package/src/next/fusion/plugins/index.ts +3 -3
  29. package/src/next/fusion/plugins/systemjs.ts +66 -66
  30. package/src/next/fusion/processors/cloneAssets.ts +81 -81
  31. package/src/next/fusion/processors/cssModulize.ts +127 -105
  32. package/src/next/fusion/processors/index.ts +4 -4
  33. package/src/next/fusion/processors/installVendors.ts +178 -178
  34. package/src/next/fusion/processors/jsModulize.ts +293 -296
  35. package/src/next/index.ts +2 -2
  36. package/src/next/utilities/asset-sync.ts +47 -47
  37. package/src/next/utilities/crypto.ts +11 -11
  38. package/src/next/utilities/fs.ts +61 -61
  39. package/src/next/utilities/index.ts +5 -5
  40. package/src/next/utilities/modules.ts +17 -17
  41. package/bin/release.js +0 -47
  42. package/core/index.d.ts +0 -1
  43. package/core/index.html +0 -13
  44. package/core/lib/main.ts +0 -9
  45. package/core/package.json +0 -26
  46. package/core/public/vite.svg +0 -1
  47. package/core/src/main.ts +0 -23
  48. package/core/src/style.css +0 -95
  49. package/core/src/typescript.svg +0 -1
  50. package/core/src/vite-env.d.ts +0 -1
  51. package/postcss.config.js +0 -12
  52. package/tailwind/console.tailwind.config.cjs +0 -32
  53. package/tailwind.config.js +0 -10
  54. package/vite.config.debugger.ts +0 -94
  55. package/vite.config.next.ts +0 -75
@@ -1,296 +1,293 @@
1
- import { type FindFileResult, findFilesFromGlobArray, stripUrlQuery } from '@/next';
2
- import {
3
- type BuildTask,
4
- type ConfigBuilder,
5
- type MaybePromise,
6
- type ProcessorInterface,
7
- type ProcessorPreview,
8
- js,
9
- shortHash,
10
- plugin as addPlugin,
11
- } from '@windwalker-io/fusion-next';
12
- import { WatchTask } from '@windwalker-io/fusion-next/src/types';
13
- import fs from 'fs-extra';
14
- import crypto from 'node:crypto';
15
- import { parse } from 'node-html-parser';
16
- import { normalize, resolve } from 'node:path';
17
-
18
- export interface JsModulizeOptions {
19
- tmpPath?: string;
20
- cleanTmp?: boolean;
21
- }
22
-
23
- export function jsModulize(entry: string, dest: string, options: JsModulizeOptions = {}) {
24
- return new JsModulizeProcessor(js(entry, dest), options);
25
- }
26
-
27
- export class JsModulizeProcessor implements ProcessorInterface {
28
- protected scriptPatterns: string[] = [];
29
- protected bladePatterns: string[] = [];
30
- protected stagePrefix: string = '';
31
-
32
- constructor(protected processor: ReturnType<typeof js>, protected options: JsModulizeOptions = {}) {
33
- }
34
-
35
- config(taskName: string, builder: ConfigBuilder) {
36
- const tasks = this.processor.config(taskName, builder) as BuildTask[];
37
- const task = tasks[0];
38
- const inputFile = resolve(task.input);
39
- const tmpPath = this.options.tmpPath ?? resolve('./tmp/fusion/jsmodules/').replace(/\\/g, '/');
40
- const clean = this.options.cleanTmp ?? true;
41
-
42
- // const appFileName = 'js/' + this.stagePrefix + '/app.js';
43
- // const appSrcFileName = 'resources/assets/src/' + this.stagePrefix + '/app.js';
44
- // const task = builder.addTask(appFileName);
45
-
46
- if (clean) {
47
- builder.postBuildCallbacks.push((options, bundle) => {
48
- fs.removeSync(tmpPath);
49
- });
50
- }
51
-
52
- // builder.merge({
53
- // resolve: {
54
- // alias: {
55
- // '@main': task.input
56
- // }
57
- // }
58
- // });
59
-
60
- // builder.entryFileNamesCallbacks.push((chunkInfo) => {
61
- // if (chunkInfo.facadeModuleId === appSrcFileName) {
62
- // return appFileName;
63
- // }
64
- // });
65
- //
66
- // builder.resolveIdCallbacks.push((id) => {
67
- // if (id === task.input) {
68
- // return appSrcFileName;
69
- // }
70
- // });
71
-
72
- this.ignoreMainImport(task);
73
-
74
- builder.resolveIdCallbacks.push((id) => {
75
- if (id === '@main') {
76
- return { id, external: true };
77
- }
78
- });
79
-
80
- const scriptFiles = findFilesFromGlobArray(this.scriptPatterns);
81
- const bladeFiles = parseScriptsFromBlades(this.bladePatterns);
82
-
83
- // Watches
84
- // for (const bladeFile of bladeFiles) {
85
- // builder.watches.push({
86
- // file: resolve(bladeFile.file.fullpath),
87
- // moduleFile: inputFile,
88
- // updateType: 'full-reload',
89
- // } satisfies WatchTask);
90
- // }
91
-
92
- builder.loadCallbacks.push((src, options) => {
93
- const srcFile = stripUrlQuery(src);
94
-
95
- // if (src === appSrcFileName) {
96
- if (normalize(srcFile) === inputFile) {
97
- let listJS = "{\n";
98
-
99
- // Merge standalone ts files
100
- for (const scriptFile of scriptFiles) {
101
- let fullpath = scriptFile.fullpath;
102
-
103
- if (fullpath.endsWith('.d.ts')) {
104
- continue;
105
- }
106
-
107
- let key = scriptFile.relativePath.replace(/assets\//, '').toLowerCase();
108
- fullpath = resolve(fullpath).replace(/\\/g, '/');
109
-
110
- key = key.substring(0, key.lastIndexOf('.'));
111
-
112
- if (this.stagePrefix) {
113
- key = this.stagePrefix + '/' + key;
114
- }
115
-
116
- // md5
117
- key = 'view:' + crypto.createHash('md5').update(key).digest('hex');
118
-
119
- listJS += `'${key}': () => import('${fullpath}'),\n`;
120
- }
121
-
122
- // Parse from blades
123
- const listens: string[] = [];
124
-
125
- fs.ensureDirSync(tmpPath);
126
-
127
- for (const result of bladeFiles) {
128
- let key = result.as;
129
- const tmpFile = tmpPath + '/' + result.path.replace(/\\|\//g, '_') + '-' + shortHash(result.code) + '.ts';
130
-
131
- if (!fs.existsSync(tmpFile) || fs.readFileSync(tmpFile, 'utf8') !== result.code) {
132
- fs.writeFileSync(tmpFile, result.code);
133
- }
134
-
135
- // if (this.stagePrefix) {
136
- // key = this.stagePrefix + '/' + key;
137
- // }
138
-
139
- listJS += `'inline:${key}': () => import('${tmpFile}'),\n`;
140
-
141
- const fullpath = resolve(result.file.fullpath).replace(/\\/g, '/');
142
-
143
- if (!listens.includes(fullpath)) {
144
- listens.push(fullpath);
145
- }
146
- }
147
-
148
- listJS += "}";
149
-
150
- // const loaderPath = resolve('./vendor/windwalker/core/assets/core/src/next/app.ts')
151
- // .replace(/\\/g, '/');
152
- //
153
- // const ts = `
154
- // import { App } from '${loaderPath}';
155
- //
156
- // const app = new App();
157
- // app.registerRoutes(${listJS});
158
- //
159
- // export default app;
160
- // `;
161
-
162
- // Listen extra files
163
- builder.watches.push(...listens);
164
-
165
- let { code, comments } = stripComments(fs.readFileSync(srcFile, 'utf-8'));
166
-
167
- // Replace `defineJsModules(...)`
168
- code = code.replace(/defineJsModules\((.*?)\)/g, listJS);
169
-
170
- return restoreComments(code, comments);
171
- }
172
- });
173
-
174
- return undefined;
175
- }
176
-
177
- /**
178
- * @see https://github.com/vitejs/vite/issues/6393#issuecomment-1006819717
179
- * @see https://stackoverflow.com/questions/76259677/vite-dev-server-throws-error-when-resolving-external-path-from-importmap
180
- */
181
- private ignoreMainImport(task: BuildTask) {
182
- const VALID_ID_PREFIX = `/@id/`;
183
- const importKeys = ['@main'];
184
- const reg = new RegExp(
185
- `${VALID_ID_PREFIX}(${importKeys.join("|")})`,
186
- "g"
187
- );
188
-
189
- addPlugin({
190
- name: 'keep-main-external-' + task.id,
191
- transform(code) {
192
- return reg.test(code) ? code.replace(reg, (m, s1) => s1) : code;
193
- }
194
- });
195
- }
196
-
197
- preview(): MaybePromise<ProcessorPreview[]> {
198
- return [];
199
- }
200
-
201
- mergeScripts(...patterns: (string | string[])[]) {
202
- this.scriptPatterns = this.scriptPatterns.concat(patterns.flat());
203
-
204
- return this;
205
- }
206
-
207
- parseBlades(...bladePatterns: (string[] | string)[]) {
208
- this.bladePatterns = this.bladePatterns.concat(bladePatterns.flat());
209
-
210
- return this;
211
- }
212
-
213
- stage(stage: string) {
214
- this.stagePrefix = stage;
215
-
216
- return this;
217
- }
218
- }
219
-
220
- interface ScriptResult {
221
- as: string;
222
- file: FindFileResult;
223
- path: string;
224
- code: string;
225
- }
226
-
227
- // function parseScriptsFromBlade(file: string, service: Record<string, ParsedModule>): string[] {
228
- // const bladeText = fs.readFileSync(file, 'utf8');
229
- //
230
- // const html = parse(bladeText);
231
- //
232
- // return html.querySelectorAll('script[lang]')
233
- // .filter(
234
- // (el) => ['ts', 'typescript'].includes(el.getAttribute('lang') || '')
235
- // )
236
- // .map((el) => el.innerHTML)
237
- // .filter((c) => c.trim() !== '');
238
- // }
239
-
240
- function parseScriptsFromBlades(patterns: string | string[]): ScriptResult[] {
241
- let files = findFilesFromGlobArray(Array.isArray(patterns) ? patterns : [patterns]);
242
-
243
- return files.map((file) => {
244
- const bladeText = fs.readFileSync(file.fullpath, 'utf8');
245
-
246
- const html = parse(bladeText);
247
- // const key = file.relativePath.replace(/.blade.php$/, '').toLowerCase();
248
-
249
- return html.querySelectorAll('script[lang][data-macro]')
250
- .filter(
251
- (el) => ['ts', 'typescript'].includes(el.getAttribute('lang') || '')
252
- )
253
- .map((el) => ({
254
- as: el.getAttribute('data-macro') || '',
255
- file: file,
256
- path: file.relativePath.replace(/.blade.php$/, ''),
257
- code: el.innerHTML
258
- }))
259
- .filter((c) => c.code.trim() !== '');
260
- })
261
- .flat();
262
- }
263
-
264
- type CommentPlaceholder = { key: string; value: string; };
265
-
266
- function stripComments(code: string): { code: string; comments: CommentPlaceholder[] } {
267
- const comments: CommentPlaceholder[] = [];
268
- let i = 0;
269
-
270
- code = code
271
- // Multi-line /* */
272
- .replace(/\/\*[\s\S]*?\*\//g, match => {
273
- const key = `__COMMENT_BLOCK_${i}__`;
274
- comments.push({ key, value: match });
275
- i++;
276
- return key;
277
- })
278
- // Single-line //
279
- .replace(/\/\/.*$/gm, match => {
280
- const key = `__COMMENT_LINE_${i}__`;
281
- comments.push({ key, value: match });
282
- i++;
283
- return key;
284
- });
285
-
286
- return { code, comments };
287
- }
288
-
289
- function restoreComments(code: string, comments: CommentPlaceholder[]): string {
290
- for (const { key, value } of comments) {
291
- const re = new RegExp(key, 'g');
292
- code = code.replace(re, value);
293
- }
294
-
295
- return code;
296
- }
1
+ import {
2
+ type BuildTask,
3
+ type ConfigBuilder,
4
+ js,
5
+ type MaybePromise,
6
+ plugin as addPlugin,
7
+ type ProcessorInterface,
8
+ type ProcessorPreview,
9
+ shortHash,
10
+ } from '@windwalker-io/fusion-next';
11
+ import fs from 'fs-extra';
12
+ import { parse } from 'node-html-parser';
13
+ import crypto from 'node:crypto';
14
+ import { normalize, resolve } from 'node:path';
15
+ import { type FindFileResult, findFilesFromGlobArray, findModules, findPackages, stripUrlQuery } from '../../utilities';
16
+
17
+ export interface JsModulizeOptions {
18
+ tmpPath?: string;
19
+ cleanTmp?: boolean;
20
+ }
21
+
22
+ export function jsModulize(entry: string, dest: string, options: JsModulizeOptions = {}) {
23
+ return new JsModulizeProcessor(js(entry, dest), options);
24
+ }
25
+
26
+ export interface JsModulizeDeepOptions extends JsModulizeOptions {
27
+ mergeScripts?: boolean;
28
+ parseBlades?: boolean;
29
+ }
30
+
31
+ export function jsModulizeDeep(stage: string, entry: string, dest: string, options: JsModulizeDeepOptions = {}) {
32
+ const processor = jsModulize(entry, dest, options)
33
+ .stage(stage.toLowerCase());
34
+
35
+ if (options.mergeScripts ?? true) {
36
+ processor.mergeScripts(
37
+ findModules(`${stage}/**/assets/*.ts`),
38
+ );
39
+ }
40
+
41
+ if (options.parseBlades ?? true) {
42
+ processor.parseBlades(
43
+ findModules(`${stage}/**/*.blade.php`),
44
+ findPackages('views/**/*.blade.php'),
45
+ );
46
+ }
47
+
48
+ return processor;
49
+ }
50
+
51
+ export class JsModulizeProcessor implements ProcessorInterface {
52
+ protected scriptPatterns: string[] = [];
53
+ protected bladePatterns: string[] = [];
54
+ protected stagePrefix: string = '';
55
+
56
+ constructor(protected processor: ReturnType<typeof js>, protected options: JsModulizeOptions = {}) {
57
+ }
58
+
59
+ config(taskName: string, builder: ConfigBuilder) {
60
+ const tasks = this.processor.config(taskName, builder) as BuildTask[];
61
+ const task = tasks[0];
62
+ const inputFile = resolve(task.input);
63
+ const tmpPath = this.options.tmpPath ?? resolve('./tmp/fusion/jsmodules/').replace(/\\/g, '/');
64
+ const clean = this.options.cleanTmp ?? true;
65
+
66
+ if (clean) {
67
+ builder.postBuildCallbacks.push((options, bundle) => {
68
+ fs.removeSync(tmpPath);
69
+ });
70
+ }
71
+
72
+ this.ignoreMainImport(task);
73
+
74
+ builder.resolveIdCallbacks.push((id) => {
75
+ if (id === '@main') {
76
+ return { id, external: true };
77
+ }
78
+ });
79
+
80
+ // Todo: Must dynamic changes in load() hook
81
+ const scriptFiles = findFilesFromGlobArray(this.scriptPatterns);
82
+ const bladeFiles = findBladeFiles(this.bladePatterns);
83
+
84
+ // Watches
85
+ // Currently we don't watch blade files because not necessary to reload full-pages.
86
+ // for (const bladeFile of bladeScripts) {
87
+ // builder.watches.push({
88
+ // file: resolve(bladeFile.file.fullpath),
89
+ // moduleFile: inputFile,
90
+ // updateType: 'js-update',
91
+ // } satisfies WatchTask);
92
+ // }
93
+
94
+ builder.loadCallbacks.push((src, options) => {
95
+ const srcFile = stripUrlQuery(src);
96
+ const scripts: Record<string, string> = {};
97
+
98
+ // if (src === appSrcFileName) {
99
+ if (normalize(srcFile) === inputFile) {
100
+ const bladeScripts = parseScriptsFromBlades(bladeFiles);
101
+ fs.removeSync(tmpPath);
102
+
103
+ // Merge standalone ts files
104
+ for (const scriptFile of scriptFiles) {
105
+ let fullpath = scriptFile.fullpath;
106
+
107
+ if (fullpath.endsWith('.d.ts')) {
108
+ continue;
109
+ }
110
+
111
+ let key = scriptFile.relativePath.replace(/assets\//, '').toLowerCase();
112
+ fullpath = resolve(fullpath).replace(/\\/g, '/');
113
+
114
+ key = key.substring(0, key.lastIndexOf('.'));
115
+
116
+ if (this.stagePrefix) {
117
+ key = this.stagePrefix + '/' + key;
118
+ }
119
+
120
+ // md5
121
+ key = 'view:' + crypto.createHash('md5').update(key).digest('hex');
122
+
123
+ scripts[key] = fullpath;
124
+ }
125
+
126
+ // Parse from blades
127
+ const listens: string[] = [];
128
+
129
+ fs.ensureDirSync(tmpPath);
130
+
131
+ for (const result of bladeScripts) {
132
+ let key = result.as;
133
+ const tmpFile = tmpPath + '/' + result.path.replace(/\\|\//g, '_') + '-' + shortHash(result.code) + '.ts';
134
+
135
+ if (!fs.existsSync(tmpFile) || fs.readFileSync(tmpFile, 'utf8') !== result.code) {
136
+ fs.writeFileSync(tmpFile, result.code);
137
+ }
138
+
139
+ scripts[`inline:${key}`] = tmpFile;
140
+
141
+ const fullpath = resolve(result.file.fullpath).replace(/\\/g, '/');
142
+
143
+ if (!listens.includes(fullpath)) {
144
+ listens.push(fullpath);
145
+ }
146
+ }
147
+
148
+ let listJS = `{\n`;
149
+
150
+ for (const key in scripts) {
151
+ const fullpath = scripts[key];
152
+ listJS += `'${key}': () => import('${fullpath}'),\n`;
153
+ }
154
+
155
+ listJS += `}`;
156
+
157
+ // Listen extra files
158
+ builder.watches.push(...listens);
159
+
160
+ let { code, comments } = stripComments(fs.readFileSync(srcFile, 'utf-8'));
161
+
162
+ // Replace `defineJsModules(...)`
163
+ code = code.replace(/defineJsModules\((.*?)\)/g, listJS);
164
+
165
+ return restoreComments(code, comments);
166
+ }
167
+ });
168
+
169
+ return undefined;
170
+ }
171
+
172
+ /**
173
+ * @see https://github.com/vitejs/vite/issues/6393#issuecomment-1006819717
174
+ * @see https://stackoverflow.com/questions/76259677/vite-dev-server-throws-error-when-resolving-external-path-from-importmap
175
+ */
176
+ private ignoreMainImport(task: BuildTask) {
177
+ const VALID_ID_PREFIX = `/@id/`;
178
+ const importKeys = ['@main'];
179
+ const reg = new RegExp(
180
+ `${VALID_ID_PREFIX}(${importKeys.join("|")})`,
181
+ "g"
182
+ );
183
+
184
+ addPlugin({
185
+ name: 'keep-main-external-' + task.id,
186
+ transform(code) {
187
+ return reg.test(code) ? code.replace(reg, (m, s1) => s1) : code;
188
+ }
189
+ });
190
+ }
191
+
192
+ preview(): MaybePromise<ProcessorPreview[]> {
193
+ return [];
194
+ }
195
+
196
+ mergeScripts(...patterns: (string | string[])[]) {
197
+ this.scriptPatterns = this.scriptPatterns.concat(patterns.flat());
198
+
199
+ return this;
200
+ }
201
+
202
+ parseBlades(...bladePatterns: (string[] | string)[]) {
203
+ this.bladePatterns = this.bladePatterns.concat(bladePatterns.flat());
204
+
205
+ return this;
206
+ }
207
+
208
+ stage(stage: string) {
209
+ this.stagePrefix = stage;
210
+
211
+ return this;
212
+ }
213
+ }
214
+
215
+ interface ScriptResult {
216
+ as: string;
217
+ file: FindFileResult;
218
+ path: string;
219
+ code: string;
220
+ }
221
+
222
+ // function parseScriptsFromBlade(file: string, service: Record<string, ParsedModule>): string[] {
223
+ // const bladeText = fs.readFileSync(file, 'utf8');
224
+ //
225
+ // const html = parse(bladeText);
226
+ //
227
+ // return html.querySelectorAll('script[lang]')
228
+ // .filter(
229
+ // (el) => ['ts', 'typescript'].includes(el.getAttribute('lang') || '')
230
+ // )
231
+ // .map((el) => el.innerHTML)
232
+ // .filter((c) => c.trim() !== '');
233
+ // }
234
+
235
+ function findBladeFiles(patterns: string | string[]) {
236
+ return findFilesFromGlobArray(Array.isArray(patterns) ? patterns : [patterns]);
237
+ }
238
+
239
+ function parseScriptsFromBlades(files: FindFileResult[]): ScriptResult[] {
240
+ return files.map((file) => {
241
+ const bladeText = fs.readFileSync(file.fullpath, 'utf8');
242
+
243
+ const html = parse(bladeText);
244
+ // const key = file.relativePath.replace(/.blade.php$/, '').toLowerCase();
245
+
246
+ return html.querySelectorAll('script[lang][data-macro]')
247
+ .filter(
248
+ (el) => ['ts', 'typescript'].includes(el.getAttribute('lang') || '')
249
+ )
250
+ .map((el) => ({
251
+ as: el.getAttribute('data-macro') || '',
252
+ file: file,
253
+ path: file.relativePath.replace(/.blade.php$/, ''),
254
+ code: el.innerHTML
255
+ }))
256
+ .filter((c) => c.code.trim() !== '');
257
+ })
258
+ .flat();
259
+ }
260
+
261
+ type CommentPlaceholder = { key: string; value: string; };
262
+
263
+ function stripComments(code: string): { code: string; comments: CommentPlaceholder[] } {
264
+ const comments: CommentPlaceholder[] = [];
265
+ let i = 0;
266
+
267
+ code = code
268
+ // Multi-line /* */
269
+ .replace(/\/\*[\s\S]*?\*\//g, match => {
270
+ const key = `__COMMENT_BLOCK_${i}__`;
271
+ comments.push({ key, value: match });
272
+ i++;
273
+ return key;
274
+ })
275
+ // Single-line //
276
+ .replace(/\/\/.*$/gm, match => {
277
+ const key = `__COMMENT_LINE_${i}__`;
278
+ comments.push({ key, value: match });
279
+ i++;
280
+ return key;
281
+ });
282
+
283
+ return { code, comments };
284
+ }
285
+
286
+ function restoreComments(code: string, comments: CommentPlaceholder[]): string {
287
+ for (const { key, value } of comments) {
288
+ const re = new RegExp(key, 'g');
289
+ code = code.replace(re, value);
290
+ }
291
+
292
+ return code;
293
+ }
package/src/next/index.ts CHANGED
@@ -1,2 +1,2 @@
1
- export * from './fusion';
2
- export * from './utilities';
1
+ export * from './fusion';
2
+ export * from './utilities';