@things-factory/shell 6.1.79 → 6.1.84
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": "@things-factory/shell",
|
3
|
-
"version": "6.1.
|
3
|
+
"version": "6.1.84",
|
4
4
|
"description": "Core module for framework",
|
5
5
|
"bin": {
|
6
6
|
"things-factory": "bin/things-factory",
|
@@ -132,5 +132,5 @@
|
|
132
132
|
"pg": "^8.7.3",
|
133
133
|
"sqlite3": "^5.0.8"
|
134
134
|
},
|
135
|
-
"gitHead": "
|
135
|
+
"gitHead": "66cd7dd022e34cbd91dcd66e71320305be11873c"
|
136
136
|
}
|
package/server/server-dev.ts
CHANGED
@@ -54,12 +54,13 @@ args.option(
|
|
54
54
|
This option is just to prevent termination for reasons of not recognizing the 'inspect' option.`,
|
55
55
|
config.get('inspect', ':9229')
|
56
56
|
)
|
57
|
+
args.option('webpack', 'webpack configuration file', config.get('webpack'))
|
57
58
|
|
58
59
|
const flags = args.parse(process.argv)
|
59
60
|
|
60
61
|
const path = require('path')
|
61
62
|
const webpack = require('webpack')
|
62
|
-
const webpackConfig = require('@things-factory/builder/webpack.config.dev.js')
|
63
|
+
const webpackConfig = require(flags.webpack || '@things-factory/builder/webpack.config.dev.js')
|
63
64
|
|
64
65
|
const compiler = webpack(webpackConfig)
|
65
66
|
|
package/server/server.ts
CHANGED