create-catalyst-app-internal 0.0.3-canary.42 → 0.0.3-canary.44
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 +2 -2
- package/package.json +1 -1
- package/scripts/cli.cjs +1 -1
- package/templates/mcp-root/mcp/context.md +4 -4
- package/templates/none-js/package.json +2 -2
- package/templates/none-ts/package.json +2 -2
- package/templates/redux-js/package.json +2 -2
- package/templates/redux-ts/package.json +2 -2
- package/templates/rtk-js/package.json +2 -2
- package/templates/rtk-ts/package.json +2 -2
package/Readme.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# Creating a Catalyst App
|
|
2
2
|
|
|
3
|
-
Scaffold your Catalyst app swiftly with `create-catalyst-app
|
|
3
|
+
Scaffold your Catalyst app swiftly with `create-catalyst-app`. This tool expedites the process by initializing your project with predefined configurations. To kickstart your project, execute the following command:
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npx create-catalyst-app
|
|
6
|
+
npx create-catalyst-app@latest
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
Upon execution, you'll be prompted to name your project. Once named, a template will be cloned into the specified directory.
|
package/package.json
CHANGED
package/scripts/cli.cjs
CHANGED
|
@@ -43,7 +43,7 @@ const program = new Commander.Command()
|
|
|
43
43
|
return
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
console.log(cyan(`Using create-catalyst-app
|
|
46
|
+
console.log(cyan(`Using create-catalyst-app version ${bold(packageJson.version)}`))
|
|
47
47
|
|
|
48
48
|
// Use options provided through commander or prompt the user
|
|
49
49
|
validateOptions(cmd)
|
|
@@ -6,7 +6,7 @@ Catalyst Context
|
|
|
6
6
|
|
|
7
7
|
TITLE: Creating a new catalyst application
|
|
8
8
|
|
|
9
|
-
DESCRIPTION: A new catalyst app can be created using the create-catalyst-app
|
|
9
|
+
DESCRIPTION: A new catalyst app can be created using the create-catalyst-app CLI command
|
|
10
10
|
|
|
11
11
|
SOURCE: https://catalyst.1mg.com/public_docs/content/installation
|
|
12
12
|
|
|
@@ -14,7 +14,7 @@ LANGUAGE: bash
|
|
|
14
14
|
CODE:
|
|
15
15
|
|
|
16
16
|
```
|
|
17
|
-
npx create-catalyst-app
|
|
17
|
+
npx create-catalyst-app@latest -y
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
Catalyst has native support for typescript, tailwind, redux, and a local MCP server
|
|
@@ -25,7 +25,7 @@ LANGUAGE: bash
|
|
|
25
25
|
CODE:
|
|
26
26
|
|
|
27
27
|
```
|
|
28
|
-
npx create-catalyst-app
|
|
28
|
+
npx create-catalyst-app@latest
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
---
|
|
@@ -633,7 +633,7 @@ TITLE: Universal App
|
|
|
633
633
|
DESCRIPTION:
|
|
634
634
|
|
|
635
635
|
- Catalyst also provides support to build native iOS/android applications
|
|
636
|
-
- This feature is currently only available in the canary version, setup the application using `npx create-catalyst-app
|
|
636
|
+
- This feature is currently only available in the canary version, setup the application using `npx create-catalyst-app@0.0.3-canary.6`
|
|
637
637
|
|
|
638
638
|
To install the android simulator
|
|
639
639
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "create-catalyst-app-
|
|
2
|
+
"name": "create-catalyst-app-starter",
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"start": "catalyst start",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@loadable/component": "^5.16.3",
|
|
28
28
|
"@tata1mg/router": "0.0.1-beta.7",
|
|
29
|
-
"catalyst-core-internal": "0.0.3-canary.
|
|
29
|
+
"catalyst-core-internal": "0.0.3-canary.44"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"eslint": "^8.26.0",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "create-catalyst-app-
|
|
2
|
+
"name": "create-catalyst-app-starter",
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"start": "catalyst start",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@loadable/component": "^5.16.3",
|
|
29
29
|
"@tata1mg/router": "0.0.1-beta.7",
|
|
30
|
-
"catalyst-core-internal": "0.0.3-canary.
|
|
30
|
+
"catalyst-core-internal": "0.0.3-canary.44"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"eslint": "^8.26.0",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "create-catalyst-app-
|
|
2
|
+
"name": "create-catalyst-app-starter",
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"start": "catalyst start",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@loadable/component": "^5.16.3",
|
|
29
29
|
"@tata1mg/router": "0.0.1-beta.7",
|
|
30
|
-
"catalyst-core-internal": "0.0.3-canary.
|
|
30
|
+
"catalyst-core-internal": "0.0.3-canary.44",
|
|
31
31
|
"@reduxjs/toolkit": "1.9.3",
|
|
32
32
|
"react-redux": "^8.1.3"
|
|
33
33
|
},
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "create-catalyst-app-
|
|
2
|
+
"name": "create-catalyst-app-starter",
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"start": "catalyst start",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@loadable/component": "^5.16.3",
|
|
30
30
|
"@tata1mg/router": "0.0.1-beta.7",
|
|
31
|
-
"catalyst-core-internal": "0.0.3-canary.
|
|
31
|
+
"catalyst-core-internal": "0.0.3-canary.44",
|
|
32
32
|
"@reduxjs/toolkit": "1.9.3",
|
|
33
33
|
"react-redux": "^8.1.3"
|
|
34
34
|
},
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "create-catalyst-app-
|
|
2
|
+
"name": "create-catalyst-app-starter",
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"start": "catalyst start",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@loadable/component": "^5.16.3",
|
|
29
29
|
"@tata1mg/router": "0.0.1-beta.7",
|
|
30
|
-
"catalyst-core-internal": "0.0.3-canary.
|
|
30
|
+
"catalyst-core-internal": "0.0.3-canary.44",
|
|
31
31
|
"@reduxjs/toolkit": "1.9.3",
|
|
32
32
|
"react-redux": "^8.1.3"
|
|
33
33
|
},
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "create-catalyst-app-
|
|
2
|
+
"name": "create-catalyst-app-starter",
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"start": "catalyst start",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@loadable/component": "^5.16.3",
|
|
30
30
|
"@tata1mg/router": "0.0.1-beta.7",
|
|
31
|
-
"catalyst-core-internal": "0.0.3-canary.
|
|
31
|
+
"catalyst-core-internal": "0.0.3-canary.44",
|
|
32
32
|
"@reduxjs/toolkit": "1.9.3",
|
|
33
33
|
"react-redux": "^8.1.3"
|
|
34
34
|
},
|