Skip to content

Commit 5274e82

Browse files
SDK regeneration
1 parent 1c1c21c commit 5274e82

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+328
-272
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ tests
44
.gitignore
55
.github
66
.fernignore
7+
.prettierrc.yml
78
biome.json
89
tsconfig.json
910
yarn.lock

package.json

Lines changed: 6 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/sdk",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"private": false,
55
"repository": "github:PipedreamHQ/pipedream-sdk-typescript",
66
"type": "commonjs",
@@ -10,11 +10,6 @@
1010
"exports": {
1111
".": {
1212
"types": "./dist/cjs/index.d.ts",
13-
"browser": {
14-
"types": "./dist/esm/browser/index.d.mts",
15-
"import": "./dist/esm/browser/index.mjs",
16-
"default": "./dist/esm/browser/index.mjs"
17-
},
1813
"import": {
1914
"types": "./dist/esm/index.d.mts",
2015
"default": "./dist/esm/index.mjs"
@@ -25,18 +20,6 @@
2520
},
2621
"default": "./dist/cjs/index.js"
2722
},
28-
"./browser": {
29-
"types": "./dist/esm/browser/index.d.mts",
30-
"import": {
31-
"types": "./dist/esm/browser/index.d.mts",
32-
"default": "./dist/esm/browser/index.mjs"
33-
},
34-
"require": {
35-
"types": "./dist/cjs/browser/index.d.ts",
36-
"default": "./dist/cjs/browser/index.js"
37-
},
38-
"default": "./dist/esm/browser/index.mjs"
39-
},
4023
"./serialization": {
4124
"types": "./dist/cjs/serialization/index.d.ts",
4225
"import": {
@@ -49,18 +32,6 @@
4932
},
5033
"default": "./dist/cjs/serialization/index.js"
5134
},
52-
"./server": {
53-
"types": "./dist/cjs/index.d.ts",
54-
"import": {
55-
"types": "./dist/esm/index.d.mts",
56-
"default": "./dist/esm/index.mjs"
57-
},
58-
"require": {
59-
"types": "./dist/cjs/index.d.ts",
60-
"default": "./dist/cjs/index.js"
61-
},
62-
"default": "./dist/cjs/index.js"
63-
},
6435
"./package.json": "./package.json"
6536
},
6637
"files": [
@@ -71,6 +42,9 @@
7142
],
7243
"scripts": {
7344
"format": "biome format --write --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
45+
"format:check": "biome format --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
46+
"lint": "biome lint --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
47+
"lint:fix": "biome lint --fix --unsafe --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
7448
"check": "biome check --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
7549
"check:fix": "biome check --fix --unsafe --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
7650
"build": "pnpm build:cjs && pnpm build:esm",
@@ -86,12 +60,10 @@
8660
"vitest": "^3.2.4",
8761
"msw": "2.11.2",
8862
"@types/node": "^18.19.70",
89-
"@biomejs/biome": "2.2.5",
90-
"typescript": "~5.7.2"
63+
"typescript": "~5.7.2",
64+
"@biomejs/biome": "2.2.5"
9165
},
9266
"browser": {
93-
"./dist/cjs/wrapper/utils/getBaseUrl.js": "./dist/cjs/wrapper/utils/getBaseUrl.browser.js",
94-
"./dist/esm/wrapper/utils/getBaseUrl.mjs": "./dist/esm/wrapper/utils/getBaseUrl.browser.mjs",
9567
"fs": false,
9668
"os": false,
9769
"path": false,

0 commit comments

Comments
 (0)