@cellajs/create-cella 0.0.3 → 0.0.5

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.
Files changed (2) hide show
  1. package/package.json +2 -16
  2. package/src/create.js +3 -2
package/package.json CHANGED
@@ -1,23 +1,9 @@
1
1
  {
2
2
  "name": "@cellajs/create-cella",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "private": false,
5
5
  "license": "MIT",
6
- "description": "Intuivive TypeScript template to build local-first web apps. Implementation-ready. MIT license.",
7
- "keywords": [
8
- "template",
9
- "monorepo",
10
- "fullstack",
11
- "typescript",
12
- "hono",
13
- "drizzle",
14
- "shadcn",
15
- "postgres",
16
- "react",
17
- "vite",
18
- "pwa",
19
- "cli"
20
- ],
6
+ "description": "Create your own app in seconds with Cella: a TypeScript template for local-first web apps.",
21
7
  "publishConfig": {
22
8
  "access": "public"
23
9
  },
package/src/create.js CHANGED
@@ -155,13 +155,14 @@ export async function create({
155
155
  const relativePath = relative(originalCwd, targetFolder);
156
156
 
157
157
  console.info('now go to your project using:')
158
- console.info(colors.cyan(` cd ./${relativePath}`)); // Adding './' to make it clear it's a relative path
158
+ console.info(colors.cyan(` cd ${relativePath}`)); // Adding './' to make it clear it's a relative path
159
159
  console.info()
160
160
  }
161
161
  console.info(`${needsCd ? 'then ' : ''}quick start with:`)
162
162
  console.info(colors.cyan(` ${packageManager} quick`))
163
163
  console.info()
164
164
 
165
- console.info('Read the readme in project root for more info on how to get started!')
165
+ console.info('Check out the readme to get started: /README.md')
166
166
  console.info(`Enjoy building ${projectName} using cella! 🎉`)
167
+ console.info()
167
168
  }