create-manifest 1.3.2 → 1.3.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.
package/README.md
CHANGED
|
@@ -3,23 +3,19 @@
|
|
|
3
3
|
The `create manifest` create a new project with [Manifest](https://manifest.build).
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
|
|
6
|
+
npx create-manifest@latest
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
-
This will create a
|
|
10
|
-
|
|
11
|
-
You can replace `--cursor` with:
|
|
9
|
+
This will create a folder named my-project and install Manifest inside it.
|
|
10
|
+
If you leave out the name, the CLI will ask you for it during setup.
|
|
12
11
|
|
|
13
|
-
|
|
14
|
-
- `--windsurf` for Windsurf
|
|
15
|
-
- or remove it entirely if you're not using an AI coding tool
|
|
12
|
+
You can add a flag to set up rules for your AI code Editor:
|
|
16
13
|
|
|
17
|
-
|
|
18
|
-
|
|
14
|
+
- `--cursor` for **Cursor**
|
|
15
|
+
- `--copilot` for **GitHub Copilot**
|
|
16
|
+
- `--windsurf` for **Windsurf**
|
|
19
17
|
|
|
20
|
-
|
|
21
|
-
npx create-manifest@latest
|
|
22
|
-
```
|
|
18
|
+
You can also use `yarn create manifest`.
|
|
23
19
|
|
|
24
20
|
## Develop
|
|
25
21
|
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
11
|
<p align='center'>
|
|
12
|
-
<strong>
|
|
12
|
+
<strong>1-file backend to ship fast</strong> <br> <span>Manifest is an open source, portable backend with data, storage, logic, auth and admin UI to ship Prototypes and MVPs.
|
|
13
|
+
</span>
|
|
13
14
|
|
|
14
15
|
## Description
|
|
15
16
|
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
11
|
<p align='center'>
|
|
12
|
-
<strong>
|
|
12
|
+
<strong>1-file backend to ship fast</strong> <br> <span>Manifest is an open source, portable backend with data, storage, logic, auth and admin UI to ship Prototypes and MVPs.
|
|
13
|
+
</span>
|
|
13
14
|
|
|
14
15
|
## Description
|
|
15
16
|
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
11
|
<p align='center'>
|
|
12
|
-
<strong>
|
|
12
|
+
<strong>1-file backend to ship fast</strong> <br> <span>Manifest is an open source, portable backend with data, storage, logic, auth and admin UI to ship Prototypes and MVPs.
|
|
13
|
+
</span>
|
|
13
14
|
|
|
14
15
|
## Description
|
|
15
16
|
|
package/dist/commands/index.js
CHANGED
|
@@ -230,7 +230,7 @@ export default class CreateManifest extends Command {
|
|
|
230
230
|
fileContent: settingsJson,
|
|
231
231
|
settings: {
|
|
232
232
|
'yaml.schemas': {
|
|
233
|
-
'https://schema.manifest.build/schema.json': '**/manifest
|
|
233
|
+
'https://schema.manifest.build/schema.json': '**/manifest.yml'
|
|
234
234
|
}
|
|
235
235
|
}
|
|
236
236
|
}));
|
package/oclif.manifest.json
CHANGED