@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
  {
2
2
  "name": "@agung_dhewe/webapps",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "library javascript (nodejs+express) untuk pengembangan applikasi web",
5
5
  "type": "module",
6
6
  "main": "./src/webapps.js",
@@ -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/libs/webmodule/pagehelper.mjs'
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/libs/webmodule/pagehelper.mjs'
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;
@@ -26,7 +26,7 @@
26
26
 
27
27
 
28
28
  <% if (cssApplicationExists) { %>
29
- <link rel="stylesheet" href="public/application.css" />
29
+ <link rel="stylesheet" href="public/local/application.css" />
30
30
  <% } %>
31
31
 
32
32