Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/qa-windows-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: Ubuntu + Windows

on:
workflow_dispatch:


concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-windows-node
Expand Down
1,992 changes: 1,392 additions & 600 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 5 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,14 @@
"private": true,
"type": "module",
"scripts": {
"build": "npm run compile -ws --if-present && npm run patch -ws --if-present",
"build:only": "npm run compile -ws --if-present",
"clean:build": "npm run clean && npm run build",
"watch": "concurrently npm:watch:*",
"watch:file-storage": "npm run watch -w ./packages/file-storage",
"watch:stream-mime-type": "npm run watch -w ./packages/stream-mime-type",
"watch:local": "npm run watch -w ./packages/local-fs",
"watch:aws-s3": "npm run watch -w ./packages/aws-s3",
"build": "tsdown && npm run patch -ws --if-present",
"build:only": "tsdown",
"clean": "rm -rf ./packages/*/dist/",
"ts": "node --import tsx/esm",
"lint": "tsc --noEmit --incremental false",
"test": "npm run lint && npm run vitest",
"vitest": "vitest run"
"vitest": "vitest run",
"pack": "npm pack -ws --pack-destination ./packed"
},
"workspaces": [
"./packages/stream-mime-type",
Expand All @@ -33,6 +28,7 @@
"express": "^5.1.0",
"node-fetch": "^3.3.2",
"rimraf": "^6.1.2",
"tsdown": "^0.15.12",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^7.2.4",
Expand Down
19 changes: 6 additions & 13 deletions packages/aws-s3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,20 @@
"mime-types": "^3.0.2"
},
"description": "",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"compile": "rm -rf ./dist/ && concurrently npm:compile:* && echo '{\"type\": \"commonjs\"}' > ./dist/cjs/package.json",
"compile:esm": "tsc --outDir ./dist/esm/ --declaration false",
"compile:cjs": "tsc --outDir ./dist/cjs/ --declaration false --module commonjs --moduleResolution node",
"compile:types": "tsc --outDir ./dist/types/ --declaration --emitDeclarationOnly",
"watch": "tsc --watch"
},
"keywords": [
"s3",
"file",
Expand Down
Loading
Loading