@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 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@alpha my-app
18
+ npm create @ramme-io/app@latest my-app
19
19
  # or
20
- npx @ramme-io/create-app@alpha my-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@alpha <project-name>\n');
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-alpha.4";
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('ļæ½ Discord: https://ramme.io/discord\n');
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ramme-io/create-app",
3
- "version": "2.0.0-alpha.4",
3
+ "version": "2.0.0",
4
4
  "description": "The official CLI to create Ramme applications.",
5
5
  "type": "module",
6
6
  "private": false,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ramme-starter",
3
3
  "private": true,
4
- "version": "2.0.0-alpha.4",
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-alpha.4",
17
- "@ramme-io/ui": "^2.0.0-alpha.4",
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",