@outwalk/create-firefly 0.4.0 → 0.6.0
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/dist/index.js
CHANGED
|
@@ -167,6 +167,9 @@ const questions = [
|
|
|
167
167
|
const force = args["force"];
|
|
168
168
|
const settings = { useCurrentDirectory: false };
|
|
169
169
|
const dependencies = ["@outwalk/firefly"];
|
|
170
|
+
if (config.language != "javascript") {
|
|
171
|
+
dependencies.push(config.language);
|
|
172
|
+
}
|
|
170
173
|
if (!["none", "custom-platform"].includes(config.platform)) {
|
|
171
174
|
dependencies.push(config.platform);
|
|
172
175
|
}
|
package/package.json
CHANGED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Welcome to your new App!
|
|
2
|
+
|
|
3
|
+
This project was bootstrapped using [@outwalk/firefly](https://www.npmjs.com/package/@outwalk/firefly)
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Getting Started
|
|
8
|
+
|
|
9
|
+
To get started with developing your new project, you have several npm scripts available.
|
|
10
|
+
|
|
11
|
+
- `npm run dev` <br/>
|
|
12
|
+
This command will run your app in development mode.
|
|
13
|
+
|
|
14
|
+
- `npm run build` <br/>
|
|
15
|
+
This command will build your app for production.
|
|
16
|
+
|
|
17
|
+
- `npm run start` <br/>
|
|
18
|
+
This command will run your production build.
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## Learn How to Develop Apps with Firefly
|
|
23
|
+
|
|
24
|
+
You can get started learning Firefly by reading the [documentation](https://github.com/OutwalkStudios/firefly#outwalk-firefly).
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Need help?
|
|
29
|
+
|
|
30
|
+
If you need help or have any questions, we are here to help!
|
|
31
|
+
Create a new [issue](https://github.com/OutwalkStudios/firefly/issues) to get started.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Welcome to your new App!
|
|
2
|
+
|
|
3
|
+
This project was bootstrapped using [@outwalk/firefly](https://www.npmjs.com/package/@outwalk/firefly)
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Getting Started
|
|
8
|
+
|
|
9
|
+
To get started with developing your new project, you have several npm scripts available.
|
|
10
|
+
|
|
11
|
+
- `npm run dev` <br/>
|
|
12
|
+
This command will run your app in development mode.
|
|
13
|
+
|
|
14
|
+
- `npm run build` <br/>
|
|
15
|
+
This command will build your app for production.
|
|
16
|
+
|
|
17
|
+
- `npm run start` <br/>
|
|
18
|
+
This command will run your production build.
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## Learn How to Develop Apps with Firefly
|
|
23
|
+
|
|
24
|
+
You can get started learning Firefly by reading the [documentation](https://github.com/OutwalkStudios/firefly#outwalk-firefly).
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Need help?
|
|
29
|
+
|
|
30
|
+
If you need help or have any questions, we are here to help!
|
|
31
|
+
Create a new [issue](https://github.com/OutwalkStudios/firefly/issues) to get started.
|
|
@@ -1,6 +1,24 @@
|
|
|
1
1
|
{
|
|
2
|
+
"include": ["src"],
|
|
2
3
|
"compilerOptions": {
|
|
4
|
+
/* features */
|
|
3
5
|
"experimentalDecorators": true,
|
|
6
|
+
"useDefineForClassFields": true,
|
|
7
|
+
|
|
8
|
+
/* syntax */
|
|
9
|
+
"target": "ES2020",
|
|
10
|
+
"module": "ESNext",
|
|
11
|
+
"lib": ["ES2020"],
|
|
12
|
+
"skipLibCheck": true,
|
|
13
|
+
|
|
14
|
+
/* bundler mode */
|
|
15
|
+
"moduleResolution": "Bundler",
|
|
16
|
+
"allowImportingTsExtensions": true,
|
|
17
|
+
"resolveJsonModule": true,
|
|
18
|
+
"isolatedModules": true,
|
|
19
|
+
"noEmit": true,
|
|
20
|
+
|
|
21
|
+
/* import path aliases */
|
|
4
22
|
"baseUrl": "./src",
|
|
5
23
|
"paths": {
|
|
6
24
|
"@/*": [
|