Skip to content

Commit 45ed724

Browse files
ytkimirtiCahidArda
andauthored
DX-1264: Unify exports (#1290)
* chore: move to new build pipeline * fix: turn all example versions to "latest" * fix: remove unneccesary install step before doing bun add * fix: add 10s sleep after workflow publish * fix: use copying into dist folder instead * fix: ci * fix: ci * fix: change canary release tag from next to canary * fix: update redis dependency as latest * chore: remove export fields that are not required We can remove these two because the files they were referencing did not exist in the older versions. So this is not a breaking change * fix: husky warning * fix: revert deleting prepare script before publishing --------- Co-authored-by: CahidArda <[email protected]>
1 parent d949397 commit 45ed724

File tree

26 files changed

+50
-60
lines changed

26 files changed

+50
-60
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ jobs:
5454
working-directory: ./dist
5555
run: |
5656
npm pkg delete scripts.prepare
57-
npm publish --access public --tag=next
57+
npm publish --access public --tag=canary

.github/workflows/tests.yaml

+6-9
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,7 @@ jobs:
5858
run: bun run build
5959

6060
- name: Install example
61-
run: |
62-
bun install
63-
bun add @upstash/redis@../../dist
61+
run: bun add @upstash/redis@../../dist
6462
working-directory: ./examples/vercel-functions-app-router
6563

6664
- name: Build example
@@ -100,9 +98,7 @@ jobs:
10098
run: bun run build
10199

102100
- name: Install example
103-
run: |
104-
bun install
105-
bun add @upstash/redis@../../dist
101+
run: bun add @upstash/redis@../../dist
106102
working-directory: ./examples/vercel-functions-pages-router
107103

108104
- name: Build example
@@ -255,7 +251,6 @@ jobs:
255251

256252
- name: Install example
257253
run: |
258-
bun install
259254
bun add @upstash/redis@../../dist
260255
npm install -g wrangler
261256
working-directory: examples/cloudflare-workers
@@ -348,7 +343,6 @@ jobs:
348343

349344
- name: Install example
350345
run: |
351-
bun install
352346
bun add @upstash/redis@../../dist
353347
npm install -g wrangler
354348
@@ -449,7 +443,6 @@ jobs:
449443
- name: Install example
450444
working-directory: ./examples/fastly
451445
run: |
452-
bun install
453446
bun add @upstash/redis@../../dist
454447
curl -L https://github.com/fastly/cli/releases/download/v1.7.0/fastly_v1.7.0_linux-amd64.tar.gz > fastly.tar.gz
455448
tar -xf ./fastly.tar.gz
@@ -613,3 +606,7 @@ jobs:
613606
run: |
614607
npm pkg delete scripts.prepare
615608
npm publish --tag=ci --verbose
609+
610+
- name: Sleep for 10s
611+
run: sleep 10s
612+
shell: bash

examples/auto-pipeline/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12-
"@upstash/redis": "^1.30.1",
12+
"@upstash/redis": "latest",
1313
"next": "14.2.3",
1414
"react": "^18",
1515
"react-dom": "^18"

examples/aws-cdk-typescript/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/aws-cdk-typescript/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"typescript": "~5.4.5"
2121
},
2222
"dependencies": {
23-
"@upstash/redis": "^1.33.0",
23+
"@upstash/redis": "latest",
2424
"aws-cdk-lib": "2.147.2",
2525
"constructs": "^10.0.0",
2626
"source-map-support": "^0.5.21"

examples/aws-lambda/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/aws-lambda/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"dependencies": {
3-
"@upstash/redis": "^1.31.6"
3+
"@upstash/redis": "latest"
44
}
55
}
66

examples/azure-functions/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/azure-functions/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"dependencies": {
1515
"@azure/functions": "^4.0.0",
16-
"@upstash/redis": "^1.34.0"
16+
"@upstash/redis": "latest"
1717
},
1818
"devDependencies": {
1919
"@types/node": "18.x",

examples/cloudflare-workers-with-typescript/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
"publish": "wrangler publish"
1313
},
1414
"dependencies": {
15-
"@upstash/redis": "../../dist"
15+
"@upstash/redis": "latest"
1616
}
1717
}

examples/cloudflare-workers/bun.lockb

177 KB
Binary file not shown.

examples/fastly/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"@fastly/js-compute": "^0.5.5",
14-
"@upstash/redis": "../../dist",
14+
"@upstash/redis": "latest",
1515
"flight-path": "^1.0.10"
1616
},
1717
"scripts": {
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dependencies": {
33
"@google-cloud/functions-framework": "^3.0.0",
4-
"@upstash/redis": "^1.31.6"
4+
"@upstash/redis": "latest"
55
}
66
}
77

examples/ion/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/ion/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"start": "next start"
1010
},
1111
"dependencies": {
12-
"@upstash/redis": "^1.34.0",
12+
"@upstash/redis": "latest",
1313
"next": "14.2.5",
1414
"react": "^18",
1515
"react-dom": "^18",

examples/nextjs-app-router/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12-
"@upstash/redis": "^1.33.0",
12+
"@upstash/redis": "latest",
1313
"next": "14.2.5",
1414
"react": "^18",
1515
"react-dom": "^18"

examples/nextjs-pages-router/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12-
"@upstash/redis": "^1.33.0",
12+
"@upstash/redis": "latest",
1313
"next": "14.2.5",
1414
"react": "^18",
1515
"react-dom": "^18"

examples/nodejs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"main": "index.js",
66
"license": "MIT",
77
"dependencies": {
8-
"@upstash/redis": "^1.33.0"
8+
"@upstash/redis": "latest"
99
}
1010
}

examples/serverless-framework/counter/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"dependencies": {
3-
"@upstash/redis": "^1.31.6"
3+
"@upstash/redis": "latest"
44
}
55
}
66

examples/sst-v2/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
"packages/*"
2323
],
2424
"dependencies": {
25-
"@upstash/redis": "^1.34.0"
25+
"@upstash/redis": "latest"
2626
}
2727
}
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"dependencies": {
3-
"@upstash/redis": "^1.31.6"
3+
"@upstash/redis": "latest"
44
}
55
}
66

examples/vercel-functions-app-router/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12-
"@upstash/redis": "^1.33.0",
12+
"@upstash/redis": "latest",
1313
"next": "14.2.5",
1414
"react": "^18",
1515
"react-dom": "^18"

examples/vercel-functions-pages-router/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12-
"@upstash/redis": "^1.33.0",
12+
"@upstash/redis": "latest",
1313
"next": "14.2.5",
1414
"react": "^18",
1515
"react-dom": "^18"

package.json

+22-24
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"version": "1.30.2",
44
"main": "./nodejs.js",
55
"module": "./nodejs.mjs",
6+
"types": "./nodejs.d.ts",
67
"exports": {
78
".": {
89
"import": "./nodejs.mjs",
@@ -12,22 +13,31 @@
1213
"import": "./nodejs.mjs",
1314
"require": "./nodejs.js"
1415
},
15-
"./node.js": "./node.js",
16-
"./node.mjs": "./node.mjs",
1716
"./cloudflare": {
1817
"import": "./cloudflare.mjs",
1918
"require": "./cloudflare.js"
2019
},
21-
"./cloudflare.js": "./cloudflare.js",
22-
"./cloudflare.mjs": "./cloudflare.mjs",
20+
"./cloudflare.js": {
21+
"import": "./cloudflare.mjs",
22+
"require": "./cloudflare.js"
23+
},
24+
"./cloudflare.mjs": {
25+
"import": "./cloudflare.mjs",
26+
"require": "./cloudflare.js"
27+
},
2328
"./fastly": {
2429
"import": "./fastly.mjs",
2530
"require": "./fastly.js"
2631
},
27-
"./fastly.js": "./fastly.js",
28-
"./fastly.mjs": "./fastly.mjs"
32+
"./fastly.js": {
33+
"import": "./fastly.mjs",
34+
"require": "./fastly.js"
35+
},
36+
"./fastly.mjs": {
37+
"import": "./fastly.mjs",
38+
"require": "./fastly.js"
39+
}
2940
},
30-
"types": "./nodejs.d.ts",
3141
"description": "An HTTP/REST based Redis client built on top of Upstash REST API.",
3242
"repository": {
3343
"type": "git",
@@ -41,39 +51,27 @@
4151
"upstash"
4252
],
4353
"files": [
44-
"./**"
54+
"./*"
4555
],
4656
"scripts": {
47-
"build": "tsup && cp README.md ./dist/ && cp package.json ./dist/ && cp LICENSE ./dist/",
57+
"build": "tsup && cp package.json README.md LICENSE dist/",
4858
"test": "bun test pkg",
4959
"fmt": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
50-
"prepare": "husky install",
60+
"prepare": "husky",
5161
"lint": "eslint \"**/*.{js,ts,tsx}\" --quiet --fix",
5262
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
5363
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
5464
"lint:fix": "eslint . -c .ts,.tsx,.js,.jsx --fix",
5565
"commit": "cz",
56-
"lint:format": "bun run lint:fix && bun run format"
66+
"lint:format": "bun run lint:fix && bun run format",
67+
"check-exports": "bun run build && cd dist && attw -P"
5768
},
5869
"author": "Andreas Thomas <[email protected]>",
5970
"license": "MIT",
6071
"bugs": {
6172
"url": "https://github.com/upstash/upstash-redis/issues"
6273
},
6374
"homepage": "https://github.com/upstash/upstash-redis#readme",
64-
"typesVersions": {
65-
"*": {
66-
"nodejs": [
67-
"./nodejs.d.ts"
68-
],
69-
"cloudflare": [
70-
"./cloudflare.d.ts"
71-
],
72-
"fastly": [
73-
"./fastly.d.ts"
74-
]
75-
}
76-
},
7775
"devDependencies": {
7876
"@biomejs/biome": "latest",
7977
"@commitlint/cli": "^19.3.0",

tsup.config.js tsup.config.ts

-5
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@ import { defineConfig } from "tsup";
33
export default defineConfig({
44
entry: ["platforms/nodejs.ts", "platforms/cloudflare.ts", "platforms/fastly.ts"],
55
format: ["cjs", "esm"],
6-
splitting: true,
7-
sourcemap: false,
86
clean: true,
9-
bundle: true,
107
dts: true,
11-
minify: true,
12-
minifyWhitespace: true,
138
});

0 commit comments

Comments
 (0)