mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-22 18:13:24 +01:00
9e7e2ec6db
- Support `apiToken` as an authentication method - Deprecates `apiKey` and `email`, making them optional parameters and encouraging `apiToken` usage in build logs - Support `wranglerVersion` for installing a specific Wrangler version for your build - Per #7, support for `workingDirectory` to run `wrangler-action` in a specific directory in your repo - Adds a test Workers project under the `test` directory. This is used in the repo's new set of workflows (see below) - Adds a GitHub Action workflow that: - Lints `entrypoint.sh` to ensure that the shell script looks correct - Runs the action with various config options to ensure future pushes don't introduce regressions
12 lines
307 B
JSON
12 lines
307 B
JSON
{
|
|
"private": true,
|
|
"name": "worker",
|
|
"version": "1.0.0",
|
|
"description": "A template for kick starting a Cloudflare Workers project",
|
|
"main": "index.js",
|
|
"author": "Ashley Lewis <ashleymichal@gmail.com>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@cloudflare/kv-asset-handler": "^0.0.5"
|
|
}
|
|
}
|