jsgui3-server 0.0.113 → 0.0.114
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
|
@@ -155,7 +155,7 @@ const call_multi = jsgui.call_multi,
|
|
|
155
155
|
//var zlib = require('zlib');
|
|
156
156
|
const util = require('util');
|
|
157
157
|
|
|
158
|
-
const browserify = require('browserify');
|
|
158
|
+
//const browserify = require('browserify');
|
|
159
159
|
const babel = require('@babel/core');
|
|
160
160
|
|
|
161
161
|
// Extends AutoStart_Resource?
|
|
@@ -233,6 +233,9 @@ class Site_JavaScript extends Resource {
|
|
|
233
233
|
|
|
234
234
|
'build_client'(callback) {
|
|
235
235
|
|
|
236
|
+
console.trace();
|
|
237
|
+
throw 'Deprecated';
|
|
238
|
+
|
|
236
239
|
// Configurable building mechanisms....
|
|
237
240
|
// Want to provide jsgui events / logs on the build process.
|
|
238
241
|
|
|
@@ -269,6 +272,9 @@ class Site_JavaScript extends Resource {
|
|
|
269
272
|
var app_path = appDir + '/js/app.js';
|
|
270
273
|
var app_bundle_path = appDir + '/js/app-bundle.js';
|
|
271
274
|
var wstream = fs.createWriteStream(app_bundle_path);
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
|
|
272
278
|
var b = browserify();
|
|
273
279
|
//b.require(app_path, {
|
|
274
280
|
// entry: true,
|