structured-fw 0.7.2 → 0.7.4

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.
Files changed (2) hide show
  1. package/bin/structured +3 -3
  2. package/package.json +3 -2
package/bin/structured CHANGED
@@ -43,9 +43,9 @@ function createTsconfig() {
43
43
  "/assets/ts/*": ["./assets/ts/*"],
44
44
  "/assets/client-js/*": ["./system/*"],
45
45
  "@structured/*": [
46
- "./node_modules/structured/build/system/server/*",
47
- "./node_modules/structured/build/system/client/*",
48
- "./node_modules/structured/build/system/*",
46
+ "./node_modules/structured-fw/build/system/server/*",
47
+ "./node_modules/structured-fw/build/system/client/*",
48
+ "./node_modules/structured-fw/build/system/*",
49
49
  "./system/server/*",
50
50
  "./system/client/*",
51
51
  "./system/*",
package/package.json CHANGED
@@ -8,12 +8,13 @@
8
8
  },
9
9
  "type": "module",
10
10
  "main": "build/index",
11
- "version": "0.7.2",
11
+ "version": "0.7.4",
12
12
  "scripts": {
13
13
  "develop": "tsc --watch",
14
14
  "startDev": "cd build && nodemon --watch '../app/**/*' --watch '../build/**/*' -e js,html,css index.js",
15
15
  "start": "cd build && node index.js",
16
- "postinstall": "tsc"
16
+ "prepublish": "tsc",
17
+ "postinstall": "echo \"Run npx structured init\" to create application boilerplate"
17
18
  },
18
19
  "bin": {
19
20
  "structured": "./bin/structured"