Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@k11r/nx-cloudflare-wrangler

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@k11r/nx-cloudflare-wrangler - npm Package Compare versions

Comparing version 2.9.1 to 2.11.0-0

.babelrc

44

executors.json
{
"$schema": "http://json-schema.org/schema",
"executors": {
"serve-worker": {
"implementation": "./src/executors/workers/serve/executor",
"schema": "./src/executors/workers/serve/schema.json"
},
"deploy-worker": {
"implementation": "./src/executors/workers/deploy/executor",
"schema": "./src/executors/workers/deploy/schema.json"
},
"build-worker": {
"implementation": "./src/executors/workers/build/executor",
"schema": "./src/executors/workers/build/schema.json"
},
"serve-page": {
"implementation": "./src/executors/pages/serve/executor",
"schema": "./src/executors/pages/serve/schema.json"
},
"deploy-page": {
"implementation": "./src/executors/pages/deploy/executor",
"schema": "./src/executors/pages/deploy/schema.json"
"$schema": "http://json-schema.org/schema",
"executors": {
"serve-worker": {
"implementation": "./src/executors/workers/serve/executor",
"schema": "./src/executors/workers/serve/schema.json"
},
"deploy-worker": {
"implementation": "./src/executors/workers/deploy/executor",
"schema": "./src/executors/workers/deploy/schema.json"
},
"build-worker": {
"implementation": "./src/executors/workers/build/executor",
"schema": "./src/executors/workers/build/schema.json"
},
"serve-page": {
"implementation": "./src/executors/pages/serve/executor",
"schema": "./src/executors/pages/serve/schema.json"
},
"deploy-page": {
"implementation": "./src/executors/pages/deploy/executor",
"schema": "./src/executors/pages/deploy/schema.json"
}
}
}
}
{
"$schema": "http://json-schema.org/schema",
"name": "nx-cloudflare-wrangler",
"version": "0.0.1",
"generators": {
"worker": {
"factory": "./src/generators/workers/index",
"schema": "./src/generators/workers/schema.json",
"description": "Creates a new worker project"
},
"pages": {
"factory": "./src/generators/pages/index",
"schema": "./src/generators/pages/schema.json",
"description": "Adds the pages deploy target to an existing project"
"$schema": "http://json-schema.org/schema",
"name": "nx-cloudflare-wrangler",
"version": "0.0.1",
"generators": {
"worker": {
"factory": "./src/generators/workers/index",
"schema": "./src/generators/workers/schema.json",
"description": "Creates a new worker project"
},
"pages": {
"factory": "./src/generators/pages/index",
"schema": "./src/generators/pages/schema.json",
"description": "Adds the pages deploy target to an existing project"
}
}
}
}
{
"name": "@k11r/nx-cloudflare-wrangler",
"version": "2.11.0-0",
"description": "Nx Plugin for Cloudflare Wrangler",
"repository": {
"type": "git",
"url": "https://github.com/klaascuvelier/nx-additions.git",
"url": "https://github.com/klaascuvelier/extensions.git",
"directory": "packages/nx-cloudflare-wrangler"

@@ -12,3 +13,3 @@ },

"bugs": {
"url": "https://github.com/klaascuvelier/nx-additions/issues"
"url": "https://github.com/klaascuvelier/extensions/issues"
},

@@ -22,3 +23,2 @@ "keywords": [

],
"version": "2.9.1",
"generators": "./generators.json",

@@ -31,5 +31,3 @@ "executors": "./executors.json",

"wrangler": "^3.0.0"
},
"main": "./src/index.js",
"type": "commonjs"
}
}
}

@@ -20,2 +20,2 @@ # nx-cloudflare-wrangler

This will only add a `deploy` target, the `build` property in `wrangler.toml` will point to the `build` target of the project.
This will only add a `deploy` target, the `build` property in `wrangler.toml` will point to the `build` target of the project.
{
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"title": "Deploy executor",
"type": "object",
"properties": {
"dist": {
"type": "string",
"description": "Location of the build output to deploy"
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"title": "Deploy executor",
"type": "object",
"properties": {
"dist": {
"type": "string",
"description": "Location of the build output to deploy"
},
"branch": {
"type": "string",
"description": "The name of the branch you want to deploy to."
},
"commitHash": {
"type": "string",
"description": "The SHA to attach to this deployment."
},
"commitMessage": {
"type": "string",
"description": "The commit message to attach to this deployment"
},
"commitDirty": {
"type": "boolean",
"description": "Whether or not the workspace should be considered dirty for this deployment."
}
},
"branch": {
"type": "string",
"description": "The name of the branch you want to deploy to."
},
"commitHash": {
"type": "string",
"description": "The SHA to attach to this deployment."
},
"commitMessage": {
"type": "string",
"description": "The commit message to attach to this deployment"
},
"commitDirty": {
"type": "boolean",
"description": "Whether or not the workspace should be considered dirty for this deployment."
}
},
"required": []
"required": []
}
{
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"title": "Pages serve executor",
"type": "object",
"properties": {
"dist": {
"type": "string",
"description": "Location of the build output to serve"
}
},
"required": []
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"title": "Pages serve executor",
"type": "object",
"properties": {
"dist": {
"type": "string",
"description": "Location of the build output to serve"
}
},
"required": []
}
{
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"title": "Build executor",
"type": "object",
"properties": {
},
"required": []
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"title": "Build executor",
"type": "object",
"properties": {},
"required": []
}
{
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"title": "Deploy executor",
"type": "object",
"properties": {
},
"required": []
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"title": "Deploy executor",
"type": "object",
"properties": {},
"required": []
}
{
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"title": "Serve executor",
"type": "object",
"properties": {
},
"required": []
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"title": "Serve executor",
"type": "object",
"properties": {},
"required": []
}
{
"name": "<%= name %>",
"version": "0.0.1",
"private": true,
"devDependencies": {
"wrangler": "^2.0.0",
"esbuild": "^0.14.42"
},
"dependencies": {},
"scripts": {
"build": "esbuild --bundle --out ./dist/<%= name %>.js ./src/index.ts"
}
"name": "<%= name %>",
"version": "0.0.1",
"private": true,
"devDependencies": {
"wrangler": "^2.0.0",
"esbuild": "^0.14.42"
},
"dependencies": {},
"scripts": {
"build": "esbuild --bundle --out ./dist/<%= name %>.js ./src/index.ts"
}
}
{
"compilerOptions": {
"outDir": "./dist",
"module": "commonjs",
"target": "esnext",
"lib": ["esnext"],
"alwaysStrict": true,
"strict": true,
"preserveConstEnums": true,
"moduleResolution": "node",
"sourceMap": true,
"esModuleInterop": true,
"types": [
"@cloudflare/workers-types",
"@types/jest",
"@types/service-worker-mock"
]
},
"include": ["src"],
"exclude": ["node_modules", "dist", "test"]
"compilerOptions": {
"outDir": "./dist",
"module": "commonjs",
"target": "esnext",
"lib": ["esnext"],
"alwaysStrict": true,
"strict": true,
"preserveConstEnums": true,
"moduleResolution": "node",
"sourceMap": true,
"esModuleInterop": true,
"types": [
"@cloudflare/workers-types",
"@types/jest",
"@types/service-worker-mock"
]
},
"include": ["src"],
"exclude": ["node_modules", "dist", "test"]
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc