@simitgroup/simpleapp-generator 1.0.38 → 1.0.39

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": "@simitgroup/simpleapp-generator",
3
- "version": "1.0.38",
3
+ "version": "1.0.39",
4
4
  "description": "frontend nuxtjs and backend nests code generator using jsonschema",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -7,13 +7,16 @@ npx prettier --write jsonschemas
7
7
 
8
8
  if [ $type == 'frontend' ]; then
9
9
  simpleapp-generator -c config.json -g frontend
10
+ cp -a ./shares frontend/simpleapp/generate
10
11
  elif [ $type == 'updatefrontend' ]; then
11
12
  simpleapp-generator -c config.json -g updatefrontend
13
+ cp -a ./shares frontend/simpleapp/generate
12
14
  elif [ $type == 'backend' ]; then
13
15
  simpleapp-generator -c config.json -g backend
16
+ cp -a ./shares backend/src/simpleapp/generate
14
17
  elif [ $type == 'updatebackend' ]; then
15
18
  simpleapp-generator -c config.json -g updatebackend
19
+ cp -a ./shares backend/src/simpleapp/generate
16
20
  fi
17
21
 
18
- cp -a ./shares backend/src/simpleapp/generate
19
- cp -a ./shares frontend/simpleapp/generate
22
+