@ramme-io/create-app 2.0.0-alpha.4 ā 2.0.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/README.md +2 -2
- package/index.js +3 -3
- package/package.json +1 -1
- package/template/package.json +3 -3
package/README.md
CHANGED
|
@@ -15,9 +15,9 @@ This CLI scaffolds a production-ready React application with:
|
|
|
15
15
|
Get started in seconds. No global installation required.
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
npm create @ramme-io/app@
|
|
18
|
+
npm create @ramme-io/app@latest my-app
|
|
19
19
|
# or
|
|
20
|
-
npx @ramme-io/create-app@
|
|
20
|
+
npx @ramme-io/create-app@latest my-app
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
You will be prompted to name your project.
|
package/index.js
CHANGED
|
@@ -19,7 +19,7 @@ const projectName = process.argv[2];
|
|
|
19
19
|
if (!projectName) {
|
|
20
20
|
console.error('ā Error: Please specify the project directory.');
|
|
21
21
|
console.log('\nš Usage:');
|
|
22
|
-
console.log(' npm create @ramme-io/app@
|
|
22
|
+
console.log(' npm create @ramme-io/app@latest <project-name>\n');
|
|
23
23
|
process.exit(1);
|
|
24
24
|
}
|
|
25
25
|
|
|
@@ -27,7 +27,7 @@ const templatePath = path.resolve(__dirname, 'template');
|
|
|
27
27
|
const destinationPath = path.resolve(process.cwd(), projectName);
|
|
28
28
|
|
|
29
29
|
// THE STABILITY PACT: Hardcoded target versions for the public release
|
|
30
|
-
const RELEASE_VERSION = "^2.0.0
|
|
30
|
+
const RELEASE_VERSION = "^2.0.0";
|
|
31
31
|
|
|
32
32
|
try {
|
|
33
33
|
console.log(`\nš Creating new Ramme app in: ${destinationPath}`);
|
|
@@ -79,7 +79,7 @@ try {
|
|
|
79
79
|
|
|
80
80
|
console.log('šØ Happy Creating!\n');
|
|
81
81
|
console.log('š Docs: https://ramme.io/docs');
|
|
82
|
-
console.log('
|
|
82
|
+
console.log('š¬ Discord: https://ramme.io/discord\n');
|
|
83
83
|
|
|
84
84
|
} catch (err) {
|
|
85
85
|
console.error('\nā Critical Failure:', err.message);
|
package/package.json
CHANGED
package/template/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ramme-starter",
|
|
3
3
|
"private": true,
|
|
4
|
-
"version": "2.0.0
|
|
4
|
+
"version": "2.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dev": "vite",
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"@ai-sdk/google": "^0.0.10",
|
|
14
14
|
"@google/generative-ai": "^0.24.1",
|
|
15
15
|
"@radix-ui/react-slot": "^1.2.4",
|
|
16
|
-
"@ramme-io/kernel": "^2.0.0
|
|
17
|
-
"@ramme-io/ui": "^2.0.0
|
|
16
|
+
"@ramme-io/kernel": "^2.0.0",
|
|
17
|
+
"@ramme-io/ui": "^2.0.0",
|
|
18
18
|
"ag-charts-community": "^13.0.0",
|
|
19
19
|
"ag-charts-react": "^13.0.0",
|
|
20
20
|
"ag-grid-community": "^31.3.1",
|