@live-codes/browser-compilers 0.6.1 → 0.6.3
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/dist/flow-remove-types/flow-remove-types.js +27 -0
- package/dist/postcss-modules/postcss-modules.js +62 -0
- package/package.json +3 -1
- package/scripts/vendors.js +18 -0
- package/vendor-licenses.md +2 -0
- package/vendor_modules/imports/flow-remove-types.js +3 -0
- package/vendor_modules/imports/postcss-modules.js +3 -0
package/scripts/vendors.js
CHANGED
|
@@ -348,6 +348,15 @@ esbuild.build({
|
|
|
348
348
|
plugins: nodePolyfills,
|
|
349
349
|
});
|
|
350
350
|
|
|
351
|
+
// postcss-modules
|
|
352
|
+
esbuild.build({
|
|
353
|
+
...baseOptions,
|
|
354
|
+
entryPoints: ['vendor_modules/imports/postcss-modules.js'],
|
|
355
|
+
outfile: 'dist/postcss-modules/postcss-modules.js',
|
|
356
|
+
globalName: 'postcssModules',
|
|
357
|
+
plugins: nodePolyfills,
|
|
358
|
+
});
|
|
359
|
+
|
|
351
360
|
// Civet
|
|
352
361
|
esbuild.build({
|
|
353
362
|
...baseOptions,
|
|
@@ -363,3 +372,12 @@ fs.copyFileSync(
|
|
|
363
372
|
path.resolve(vendor_modules_src + '/fennel/fennel.lua'),
|
|
364
373
|
path.resolve(targetDir + '/fennel/fennel.lua'),
|
|
365
374
|
);
|
|
375
|
+
|
|
376
|
+
// flow-remove-types
|
|
377
|
+
esbuild.build({
|
|
378
|
+
...baseOptions,
|
|
379
|
+
entryPoints: ['vendor_modules/imports/flow-remove-types.js'],
|
|
380
|
+
outfile: 'dist/flow-remove-types/flow-remove-types.js',
|
|
381
|
+
globalName: 'flowRemoveTypes',
|
|
382
|
+
plugins: nodePolyfills,
|
|
383
|
+
});
|
package/vendor-licenses.md
CHANGED
|
@@ -18,6 +18,8 @@ elkjs-svg: [MIT License](https://github.com/EmilStenstrom/elkjs-svg/blob/4a8709b
|
|
|
18
18
|
|
|
19
19
|
Fennel: [MIT License](https://git.sr.ht/~technomancy/fennel/tree/e70ebb133b9d472246502dee8be119360ec568ca/item/LICENSE)
|
|
20
20
|
|
|
21
|
+
flow-remove-types: [MIT License](https://github.com/facebook/flow/blob/3ebee9f08106eb8aefbf98111fee696d333b8456/packages/flow-remove-types/LICENSE)
|
|
22
|
+
|
|
21
23
|
gnuplot-JS: [MIT License](https://github.com/chhu/gnuplot-JS/blob/62a3c8488ad00c97807ba48ae75738ca3af607fe/LICENSE)
|
|
22
24
|
|
|
23
25
|
JSCPP: [MIT License](https://github.com/felixhao28/JSCPP/blob/befbd6b48666007151c259c5dd291ab028ad4c04/LICENSE)
|