Skip to content

Commit

Permalink
try fix installation
Browse files Browse the repository at this point in the history
  • Loading branch information
helloimalastair committed Nov 15, 2023
1 parent 1946b5c commit db5912d
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 35 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ _As with all projects in the Cloudflare-Community Github Organization, and the `

CloudSpark is a Node CLI tool that allows easy bootstrapping of a Cloudflare Developer Platform project, which may include a Worker, Pages site, or any other dependent bindings.

## Installation
## Usage

While under development, CloudSpark is not on NPM. To install from the latest GitHub commit:
While under development, CloudSpark is not on NPM. To use it directly from github, run:

```bash
npm install -g https://github.com/Cloudflare-Community/cloudspark
npx Cloudflare-Community/cloudspark
```
Binary file modified bun.lockb
Binary file not shown.
62 changes: 30 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,32 @@
{
"name": "cloudspark",
"version": "0.0.1",
"type": "module",
"bin": {
"cloudspark": "./dist/index.js"
},
"files": [
"./dist/*"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsx build.ts",
"prepack": "npm run build",
"prepublish": "npm run build"
},
"devDependencies": {
"@clack/prompts": "^0.7.0",
"@cloudflare/workers-types": "^4.20231025.0",
"@types/argparse": "^2.0.13",
"@types/degit": "^2.8.6",
"@types/node": "^20.9.0",
"argparse": "^2.0.1",
"clack": "^0.1.0",
"commander": "^11.1.0",
"esbuild": "^0.19.5",
"eslint": "^8.53.0",
"giget": "^1.1.3",
"prettier": "^3.1.0"
},
"volta": {
"node": "20.9.0"
}
"name": "cloudspark",
"version": "0.0.1",
"type": "module",
"bin": {
"cloudspark": "./dist/index.js"
},
"files": [
"./dist/*"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsx build.ts",
"prepack": "npm run build",
"prepublish": "npm run build"
},
"devDependencies": {
"@clack/prompts": "^0.7.0",
"@cloudflare/workers-types": "^4.20231025.0",
"@types/argparse": "^2.0.13",
"@types/degit": "^2.8.6",
"@types/node": "^20.9.0",
"argparse": "^2.0.1",
"clack": "^0.1.0",
"commander": "^11.1.0",
"esbuild": "^0.19.5",
"eslint": "^8.53.0",
"giget": "^1.1.3",
"prettier": "^3.1.0",
"tsx": "^4.1.2"
}
}

0 comments on commit db5912d

Please sign in to comment.