@live-codes/browser-compilers 0.4.5 → 0.4.6

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-codes/browser-compilers",
3
- "version": "0.4.5",
3
+ "version": "0.4.6",
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,10 @@ 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
+ );
@@ -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)