@agung_dhewe/webapps 1.2.0 → 1.2.1
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
|
import Context from './<%= moduleName %>-context.mjs'
|
|
2
2
|
import * as Ext from './<%= moduleName %>-ext.mjs'
|
|
3
|
-
import * as pageHelper from '/public/
|
|
3
|
+
import * as pageHelper from '/public/lib/webmodule/pagehelper.mjs'
|
|
4
4
|
|
|
5
5
|
const Extender = Ext.<%=extenderDetil%> ?? Ext
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import Context from './<%= moduleName %>-context.mjs'
|
|
2
2
|
import * as Ext from './<%= moduleName %>-ext.mjs'
|
|
3
|
-
import * as pageHelper from '/public/
|
|
3
|
+
import * as pageHelper from '/public/lib/webmodule/pagehelper.mjs'
|
|
4
4
|
|
|
5
5
|
const Extender = Ext.extenderHeader ?? Ext
|
|
6
6
|
|
|
@@ -25,7 +25,7 @@ export async function modulePage(req, res) {
|
|
|
25
25
|
const ejsPath = path.join(__rootDir, 'public', 'modules', moduleName, `${moduleName}.ejs`)
|
|
26
26
|
const cssPath = path.join(__rootDir, 'public', 'modules', moduleName, `${moduleName}.css`);
|
|
27
27
|
const cssLayoutPath = path.join(__rootDir, 'public', 'modules', moduleName, `${moduleName}.layout.css`);
|
|
28
|
-
const cssApplicationPath = path.join(__rootDir, 'public', 'application.css');
|
|
28
|
+
const cssApplicationPath = path.join(__rootDir, 'public', 'local', 'application.css');
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
const variance = req.query.variance;
|