@profplum700/etsy-v3-api-client 2.3.9 → 2.3.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +4 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@profplum700/etsy-v3-api-client",
3
- "version": "2.3.9",
3
+ "version": "2.3.12",
4
4
  "type": "module",
5
5
  "description": "JavaScript/TypeScript client for the Etsy Open API v3 with OAuth 2.0 authentication",
6
6
  "main": "dist/index.cjs",
@@ -102,9 +102,10 @@
102
102
  "@eslint/js": "^9.31.0"
103
103
  },
104
104
  "scripts": {
105
- "build": "pnpm run build:core && pnpm run build:packages",
105
+ "build": "node scripts/build-all.mjs",
106
106
  "build:core": "rollup -c",
107
- "build:packages": "pnpm --filter './packages/*' --workspace-concurrency=1 run build",
107
+ "build:packages": "node scripts/build-all.mjs",
108
+ "build:legacy": "pnpm run build:core && pnpm --filter './packages/*' --workspace-concurrency=1 run build",
108
109
  "build:watch": "rollup -c --watch",
109
110
  "test": "jest && pnpm --filter './packages/*' run test",
110
111
  "test:core": "jest",