create-smcgateway-sv 0.1.1 → 0.1.3
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 +7 -7
- package/template/README.md +11 -1
package/package.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-smcgateway-sv",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "SMC Gateway Svelte Webapp template",
|
|
5
5
|
"bin": {
|
|
6
6
|
"create-my-template": "./index.js"
|
|
7
7
|
},
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
10
|
+
"url": "git+https://github.com/smc-gateway/create-smcgateway-sv.git"
|
|
11
11
|
},
|
|
12
12
|
"keywords": [
|
|
13
|
-
"template"
|
|
13
|
+
"template", "smc-gateway"
|
|
14
14
|
],
|
|
15
|
-
"author": "
|
|
15
|
+
"author": "Kevin Golding",
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"bugs": {
|
|
18
|
-
"url": "https://github.com/
|
|
18
|
+
"url": "https://github.com/smc-gateway/create-smcgateway-sv/issues"
|
|
19
19
|
},
|
|
20
|
-
"homepage": "https://
|
|
20
|
+
"homepage": "https://www.npmjs.com/package/create-smcgateway-sv",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
|
|
22
|
+
"cross-spawn": "^7.0.3"
|
|
23
23
|
}
|
|
24
24
|
}
|
package/template/README.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
1
|
# Getting Started
|
|
2
2
|
|
|
3
|
-
This project was bootstrapped with `create-smcgateway-sv`.
|
|
3
|
+
This project was bootstrapped with `npx create-smcgateway-sv`.
|
|
4
|
+
|
|
5
|
+
## Quickstart
|
|
6
|
+
|
|
7
|
+
1. `npn install`
|
|
8
|
+
1. `npm run dev` OR `make dev`
|
|
9
|
+
|
|
10
|
+
## Packaging for use on an SMC Gateway
|
|
11
|
+
|
|
12
|
+
1. `git commit...`
|
|
13
|
+
1. `make build` will create a zip file that can be uploaded as a web application to the SMC Gateway
|