NPM workspaces

This commit is contained in:
Gregory Schier
2024-09-30 18:11:51 -07:00
parent 035d7927f9
commit 9df586cb59
22 changed files with 5118 additions and 1972 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -3,15 +3,7 @@
"private": true,
"version": "0.0.1",
"scripts": {
"build": "yaakcli build ./src/index.js"
},
"dependencies": {
"@yaakapp/api": "^0.2.7"
},
"devDependencies": {
"@types/node": "^20.14.9",
"typescript": "^5.5.2",
"vitest": "^1.4.0",
"@yaakapp/cli": "^0.0.42"
"build": "yaakcli build ./src/index.js",
"dev": "yaakcli dev ./src/index.js"
}
}

View File

@@ -23,6 +23,7 @@ export async function pluginHookExport(_ctx: Context, request: Partial<HttpReque
if (request.method) xs.push('-X', request.method);
if (request.url) xs.push(quote(request.url));
xs.push(NEWLINE);
// Add URL params

View File

@@ -8,7 +8,7 @@
"name": "filter-jsonpath",
"version": "0.0.1",
"dependencies": {
"@yaakapp/api": "^0.2.7",
"@yaakapp/api": "^0.2.9",
"jsonpath-plus": "^9.0.0"
},
"devDependencies": {
@@ -49,9 +49,9 @@
}
},
"node_modules/@yaakapp/api": {
"version": "0.2.7",
"resolved": "https://registry.npmjs.org/@yaakapp/api/-/api-0.2.7.tgz",
"integrity": "sha512-vU9KtEwe5a+6VpDtV5+GSV+BpZETer/M9TtZ+oDZovvFMO0d55KqPfs7S6PuMru6e8Yxky8mO1TjL4Vsylh2Gg==",
"version": "0.2.8",
"resolved": "https://registry.npmjs.org/@yaakapp/api/-/api-0.2.8.tgz",
"integrity": "sha512-m+6xHIH/X8uTP65oeaSGmz90UOhl7sW5E2rNKix5MEKSFg0BzBupXMjBIT6EXtrxcCvUdOPtSP3ARriWsiZixQ==",
"dependencies": {
"@types/node": "^22.5.4"
}

View File

@@ -3,15 +3,13 @@
"private": true,
"version": "0.0.1",
"scripts": {
"build": "yaakcli build ./src/index.ts"
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js"
},
"dependencies": {
"jsonpath-plus": "^9.0.0",
"@yaakapp/api": "^0.2.7"
"jsonpath-plus": "^9.0.0"
},
"devDependencies": {
"@yaakapp/cli": "^0.0.42",
"@types/node": "^20.14.9",
"typescript": "^5.5.2"
"@types/jsonpath": "^0.2.4"
}
}

View File

@@ -9,7 +9,7 @@
"version": "0.0.1",
"dependencies": {
"@xmldom/xmldom": "^0.8.10",
"@yaakapp/api": "^0.2.7",
"@yaakapp/api": "^0.2.9",
"xpath": "^0.0.34"
},
"devDependencies": {
@@ -36,9 +36,9 @@
}
},
"node_modules/@yaakapp/api": {
"version": "0.2.7",
"resolved": "https://registry.npmjs.org/@yaakapp/api/-/api-0.2.7.tgz",
"integrity": "sha512-vU9KtEwe5a+6VpDtV5+GSV+BpZETer/M9TtZ+oDZovvFMO0d55KqPfs7S6PuMru6e8Yxky8mO1TjL4Vsylh2Gg==",
"version": "0.2.8",
"resolved": "https://registry.npmjs.org/@yaakapp/api/-/api-0.2.8.tgz",
"integrity": "sha512-m+6xHIH/X8uTP65oeaSGmz90UOhl7sW5E2rNKix5MEKSFg0BzBupXMjBIT6EXtrxcCvUdOPtSP3ARriWsiZixQ==",
"dependencies": {
"@types/node": "^22.5.4"
}

View File

@@ -3,16 +3,11 @@
"private": true,
"version": "0.0.1",
"scripts": {
"build": "yaakcli build ./src/index.js"
"build": "yaakcli build ./src/index.js",
"dev": "yaakcli dev ./src/index.js"
},
"dependencies": {
"@yaakapp/api": "^0.2.7",
"@xmldom/xmldom": "^0.8.10",
"xpath": "^0.0.34"
},
"devDependencies": {
"@yaakapp/cli": "^0.0.42",
"@types/node": "^20.14.9",
"typescript": "^5.5.2"
}
}

View File

@@ -8,7 +8,7 @@
"name": "importer-curl",
"version": "0.0.1",
"dependencies": {
"@yaakapp/api": "^0.2.7",
"@yaakapp/api": "^0.2.9",
"shell-quote": "^1.8.1"
},
"devDependencies": {
@@ -710,9 +710,9 @@
}
},
"node_modules/@yaakapp/api": {
"version": "0.2.7",
"resolved": "https://registry.npmjs.org/@yaakapp/api/-/api-0.2.7.tgz",
"integrity": "sha512-vU9KtEwe5a+6VpDtV5+GSV+BpZETer/M9TtZ+oDZovvFMO0d55KqPfs7S6PuMru6e8Yxky8mO1TjL4Vsylh2Gg==",
"version": "0.2.8",
"resolved": "https://registry.npmjs.org/@yaakapp/api/-/api-0.2.8.tgz",
"integrity": "sha512-m+6xHIH/X8uTP65oeaSGmz90UOhl7sW5E2rNKix5MEKSFg0BzBupXMjBIT6EXtrxcCvUdOPtSP3ARriWsiZixQ==",
"dependencies": {
"@types/node": "^22.5.4"
}

View File

@@ -3,17 +3,10 @@
"private": true,
"version": "0.0.1",
"scripts": {
"build": "yaakcli build ./src/index.js"
"build": "yaakcli build ./src/index.js",
"dev": "yaakcli dev ./src/index.js"
},
"dependencies": {
"@yaakapp/api": "^0.2.7",
"shell-quote": "^1.8.1"
},
"devDependencies": {
"@yaakapp/cli": "^0.0.42",
"@types/node": "^20.14.9",
"@types/shell-quote": "^1.7.5",
"typescript": "^5.5.2",
"vitest": "^1.4.0"
}
}

View File

@@ -8,7 +8,7 @@
"name": "importer-insomnia",
"version": "0.0.1",
"dependencies": {
"@yaakapp/api": "^0.2.7",
"@yaakapp/api": "^0.2.9",
"yaml": "^2.4.2"
},
"devDependencies": {
@@ -27,9 +27,9 @@
}
},
"node_modules/@yaakapp/api": {
"version": "0.2.7",
"resolved": "https://registry.npmjs.org/@yaakapp/api/-/api-0.2.7.tgz",
"integrity": "sha512-vU9KtEwe5a+6VpDtV5+GSV+BpZETer/M9TtZ+oDZovvFMO0d55KqPfs7S6PuMru6e8Yxky8mO1TjL4Vsylh2Gg==",
"version": "0.2.8",
"resolved": "https://registry.npmjs.org/@yaakapp/api/-/api-0.2.8.tgz",
"integrity": "sha512-m+6xHIH/X8uTP65oeaSGmz90UOhl7sW5E2rNKix5MEKSFg0BzBupXMjBIT6EXtrxcCvUdOPtSP3ARriWsiZixQ==",
"dependencies": {
"@types/node": "^22.5.4"
}

View File

@@ -3,15 +3,10 @@
"private": true,
"version": "0.0.1",
"scripts": {
"build": "yaakcli build ./src/index.js"
"build": "yaakcli build ./src/index.js",
"dev": "yaakcli dev ./src/index.js"
},
"dependencies": {
"@yaakapp/api": "^0.2.7",
"yaml": "^2.4.2"
},
"devDependencies": {
"@yaakapp/cli": "^0.0.42",
"@types/node": "^20.14.9",
"typescript": "^5.5.2"
}
}

View File

@@ -8,7 +8,7 @@
"name": "importer-openapi",
"version": "0.0.1",
"dependencies": {
"@yaakapp/api": "^0.2.7",
"@yaakapp/api": "^0.2.9",
"openapi-to-postmanv2": "^4.23.1",
"yaml": "^2.4.2"
},
@@ -57,9 +57,9 @@
}
},
"node_modules/@yaakapp/api": {
"version": "0.2.7",
"resolved": "https://registry.npmjs.org/@yaakapp/api/-/api-0.2.7.tgz",
"integrity": "sha512-vU9KtEwe5a+6VpDtV5+GSV+BpZETer/M9TtZ+oDZovvFMO0d55KqPfs7S6PuMru6e8Yxky8mO1TjL4Vsylh2Gg==",
"version": "0.2.8",
"resolved": "https://registry.npmjs.org/@yaakapp/api/-/api-0.2.8.tgz",
"integrity": "sha512-m+6xHIH/X8uTP65oeaSGmz90UOhl7sW5E2rNKix5MEKSFg0BzBupXMjBIT6EXtrxcCvUdOPtSP3ARriWsiZixQ==",
"dependencies": {
"@types/node": "^22.5.4"
}

View File

@@ -3,17 +3,11 @@
"private": true,
"version": "0.0.1",
"scripts": {
"build": "yaakcli build ./src/index.js"
"build": "yaakcli build ./src/index.js",
"dev": "yaakcli dev ./src/index.js"
},
"dependencies": {
"@yaakapp/api": "^0.2.7",
"openapi-to-postmanv2": "^4.23.1",
"yaml": "^2.4.2"
},
"devDependencies": {
"@yaakapp/cli": "^0.0.42",
"@types/node": "^20.14.9",
"@types/openapi-to-postmanv2": "^3.2.4",
"typescript": "^5.5.2"
}
}

View File

@@ -8,7 +8,7 @@
"name": "importer-postman",
"version": "0.0.1",
"dependencies": {
"@yaakapp/api": "^0.2.7"
"@yaakapp/api": "^0.2.9"
},
"devDependencies": {
"@types/node": "^20.14.9",

View File

@@ -4,16 +4,7 @@
"version": "0.0.1",
"main": "./build/index.js",
"scripts": {
"build": "yaakcli build ./src/index.js"
},
"dependencies": {
"@yaakapp/api": "^0.2.7"
},
"devDependencies": {
"@yaakapp/cli": "^0.0.42",
"@types/node": "^20.14.9",
"esbuild": "^0.21.5",
"typescript": "^5.5.2",
"vitest": "^1.4.0"
"build": "yaakcli build ./src/index.js",
"dev": "yaakcli dev ./src/index.js"
}
}

View File

@@ -8,7 +8,7 @@
"name": "importer-yaak",
"version": "0.0.1",
"dependencies": {
"@yaakapp/api": "^0.2.7"
"@yaakapp/api": "^0.2.9"
},
"devDependencies": {
"@types/node": "^20.14.9",

View File

@@ -3,15 +3,7 @@
"private": true,
"version": "0.0.1",
"scripts": {
"build": "yaakcli build ./src/index.js"
},
"dependencies": {
"@yaakapp/api": "^0.2.7"
},
"devDependencies": {
"@yaakapp/cli": "^0.0.42",
"@types/node": "^20.14.9",
"esbuild": "^0.21.5",
"typescript": "^5.5.2"
"build": "yaakcli build ./src/index.js",
"dev": "yaakcli dev ./src/index.js"
}
}

View File

@@ -9,7 +9,7 @@
"version": "0.0.1",
"dependencies": {
"@xmldom/xmldom": "^0.8.10",
"@yaakapp/api": "^0.2.7",
"@yaakapp/api": "^0.2.9",
"jsonpath-plus": "^9.0.0",
"xpath": "^0.0.34"
},

View File

@@ -3,19 +3,15 @@
"private": true,
"version": "0.0.1",
"scripts": {
"build": "yaakcli build ./src/index.ts"
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js"
},
"dependencies": {
"@yaakapp/api": "^0.2.7",
"jsonpath-plus": "^9.0.0",
"xpath": "^0.0.34",
"@xmldom/xmldom": "^0.8.10"
},
"devDependencies": {
"@yaakapp/cli": "^0.0.42",
"@types/jsonpath": "^0.2.4",
"@types/node": "^20.14.9",
"typescript": "^5.5.2",
"vitest": "^1.4.0"
"@types/jsonpath": "^0.2.4"
}
}