mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-21 17:43:23 +01:00
edb2a58814
* Removes dependencies such as Docker, decreasing spin-up time * Adds community-requested features, including bulk secrets API utilization from Wrangler * Fixes CI/CD * Adds testing * Improves command implementation * Begins using Node for the Action engine/runner * Openly discusses all changes with the community GitHub Discussions opened and Issues monitored BREAKING CHANGES: * Docker is no longer a dependency * Wrangler v1 is no longer supported Additional related Internal tickets: Major Version Default: https://jira.cfdata.org/browse/DEVX-632 Rewrite Project: DEVX-804,802,800,632
20 lines
467 B
JSON
20 lines
467 B
JSON
{
|
|
"files": ["./src/index.ts"],
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"composite": true,
|
|
"incremental": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"isolatedModules": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "NodeNext",
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
"lib": ["ESNext"],
|
|
"types": ["node", "@cloudflare/workers-types"]
|
|
},
|
|
"exclude": ["node_modules", "**/*.test.ts"],
|
|
"include": ["src/index.ts"]
|
|
}
|