create-mithril-lynx 0.1.0 → 0.1.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 +1 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-mithril-lynx",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Scaffolds a new mithril-lynx app — Hello World, Blank, or Basic Activity (with navigation), in JavaScript or TypeScript — and optionally the native Android host that packages it into an APK.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
package/src/index.js
CHANGED
|
@@ -17,7 +17,7 @@ const cwd = process.cwd();
|
|
|
17
17
|
// current release: a fresh scaffold shouldn't start five releases behind.
|
|
18
18
|
// Verified by generating with --ts --blank and --js --basic-activity,
|
|
19
19
|
// installing, and building the APK (debug and release).
|
|
20
|
-
const MITHRIL_LYNX_VERSION = "
|
|
20
|
+
const MITHRIL_LYNX_VERSION = "latest";
|
|
21
21
|
|
|
22
22
|
const TEMPLATES = [
|
|
23
23
|
{ value: "hello-world", label: "Hello World", hint: "recommended" },
|