@live-codes/browser-compilers 0.4.3 → 0.4.8

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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-codes/browser-compilers",
3
- "version": "0.4.3",
3
+ "version": "0.4.8",
4
4
  "description": "Compilers that run in the browser, for use in livecodes.io",
5
5
  "author": "Hatem Hosny",
6
6
  "license": "MIT",
@@ -204,3 +204,30 @@ esbuild.build({
204
204
  outfile: 'dist/windicss/windicss.js',
205
205
  globalName: 'windicss',
206
206
  });
207
+
208
+ // JSCPP
209
+ mkdirp(targetDir + '/jscpp');
210
+ fs.copyFileSync(
211
+ path.resolve(vendor_modules + '/jscpp/JSCPP.es5.min.js'),
212
+ path.resolve(targetDir + '/jscpp/JSCPP.es5.min.js'),
213
+ );
214
+
215
+ // wacl
216
+ mkdirp(targetDir + '/wacl');
217
+ mkdirp(targetDir + '/wacl/tcl');
218
+ fs.copyFileSync(
219
+ path.resolve(vendor_modules + '/wacl/tcl/wacl.js'),
220
+ path.resolve(targetDir + '/wacl/tcl/wacl.js'),
221
+ );
222
+ fs.copyFileSync(
223
+ path.resolve(vendor_modules + '/wacl/tcl/wacl.wasm'),
224
+ path.resolve(targetDir + '/wacl/tcl/wacl.wasm'),
225
+ );
226
+ fs.copyFileSync(
227
+ path.resolve(vendor_modules + '/wacl/tcl/wacl-custom.data'),
228
+ path.resolve(targetDir + '/wacl/tcl/wacl-custom.data'),
229
+ );
230
+ fs.copyFileSync(
231
+ path.resolve(vendor_modules + '/wacl/tcl/wacl-library.data'),
232
+ path.resolve(targetDir + '/wacl/tcl/wacl-library.data'),
233
+ );
@@ -10,6 +10,8 @@ clientside-haml-js: [MIT License](https://github.com/uglyog/clientside-haml-js/b
10
10
 
11
11
  CoffeeScript: [MIT License](https://github.com/jashkenas/coffeescript/tree/07f644c39223e016aceedd2cd71b5941579b5659)
12
12
 
13
+ JSCPP: [MIT License](https://github.com/felixhao28/JSCPP/blob/befbd6b48666007151c259c5dd291ab028ad4c04/LICENSE)
14
+
13
15
  Less: [Apache License 2.0](https://github.com/less/less.js/blob/870f9b2d8136bfbcdc9e1293bb0def51b54f9276/LICENSE)
14
16
 
15
17
  LiveScript: [MIT License](https://github.com/gkz/LiveScript/blob/bd9faa4d484b6abb110473f96c28bf8686e7b7a0/LICENSE)
@@ -44,6 +46,8 @@ Stylus: [MIT License](https://github.com/stylus/stylus/blob/59bc665db295981d4e3f
44
46
 
45
47
  Svelte: [MIT License](https://github.com/sveltejs/svelte/blob/dafbdc286eef3de2243088a9a826e6899e20465c/LICENSE)
46
48
 
47
- wasm-refmt:[MIT License](https://github.com/xtuc/webassemblyjs/blob/45f733aa96476d74c8ac57598e13406a48a6fdc8/LICENSE)
49
+ wacl: [BSD 3-Clause License](https://github.com/ecky-l/wacl/blob/9daacabb0102a9986f33263261350edfeebdd83b/LICENSE)
50
+
51
+ wasm-refmt: [MIT License](https://github.com/xtuc/webassemblyjs/blob/45f733aa96476d74c8ac57598e13406a48a6fdc8/LICENSE)
48
52
 
49
53
  Windi CSS: [MIT License](https://github.com/windicss/windicss/blob/bcd50d877e62630f191602ddeabd9f677cc6d90c/LICENSE)