create-deka-app 0.0.1 → 0.0.2

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 (3) hide show
  1. package/README.md +1 -1
  2. package/index.js +5 -2
  3. package/package.json +24 -6
package/README.md CHANGED
@@ -17,7 +17,7 @@ bun create deka-app myapp
17
17
 
18
18
  ## Status
19
19
 
20
- **Placeholder.** This package reserves the name while the real scaffolder is built ([deka#1091](https://github.com/dekaruntime/deka/issues/1091)). Today it prints where to get deka.
20
+ **Placeholder.** This package reserves the name while the real scaffolder is built ([deka#1091](https://github.com/dekaruntime/deka/issues/1091)). It does not scaffold a project yet; it points you at deka.
21
21
 
22
22
  Install deka directly in the meantime:
23
23
 
package/index.js CHANGED
@@ -5,10 +5,13 @@ const supported = new Set(['darwin-arm64', 'darwin-x64', 'linux-x64'])
5
5
  const platform = `${process.platform === 'win32' ? 'win32' : process.platform}-${process.arch === 'arm64' ? 'arm64' : 'x64'}`
6
6
 
7
7
  console.log('')
8
- console.log(' create-deka-app is not published yet.')
8
+ console.log(' create-deka-app does not scaffold projects yet.')
9
9
  console.log('')
10
10
  console.log(' deka is a runtime and language for full-stack apps: https://deka.gg')
11
- console.log(' Install today: curl -fsSL https://deka.gg/install.sh | sh')
11
+ console.log(' Install it today: curl -fsSL https://deka.gg/install.sh | sh')
12
+ console.log(' Then: deka init myapp')
13
+ console.log('')
14
+ console.log(' Progress: https://github.com/dekaruntime/deka/issues/1091')
12
15
  console.log('')
13
16
  if (!supported.has(platform)) {
14
17
  console.log(` Note: ${platform} is not supported yet.`)
package/package.json CHANGED
@@ -1,14 +1,32 @@
1
1
  {
2
2
  "name": "create-deka-app",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Scaffold a new deka app",
5
- "bin": { "create-deka-app": "./index.js" },
5
+ "bin": {
6
+ "create-deka-app": "./index.js"
7
+ },
6
8
  "type": "module",
7
- "files": ["index.js", "README.md", "LICENSE"],
8
- "engines": { "node": ">=18" },
9
- "repository": { "type": "git", "url": "git+https://github.com/dekaruntime/create-deka-app.git" },
9
+ "files": [
10
+ "index.js",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
14
+ "engines": {
15
+ "node": ">=18"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/dekaruntime/create-deka-app.git"
20
+ },
10
21
  "homepage": "https://deka.gg",
11
22
  "bugs": "https://github.com/dekaruntime/deka/issues",
12
23
  "license": "Apache-2.0",
13
- "keywords": ["deka", "dekascript", "runtime", "react", "scaffold", "create-deka-app"]
24
+ "keywords": [
25
+ "deka",
26
+ "dekascript",
27
+ "runtime",
28
+ "react",
29
+ "scaffold",
30
+ "create-deka-app"
31
+ ]
14
32
  }