Skip to content

Commit e0a5253

Browse files
committed
chore: minor adjustments
1 parent d52c9fa commit e0a5253

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const result = await Bun.build({
88

99
target: 'bun',
1010
outdir: './dist',
11-
11+
sourcemap: 'inline',
1212
plugins: [dts()],
1313
})
1414

package.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,10 @@
1616
"keywords": ["dynamodb", "utilities", "typescript", "bun", "package"],
1717
"exports": {
1818
".": {
19-
"bun": "./src/index.ts",
2019
"types": "./dist/index.d.ts",
2120
"import": "./dist/index.js"
2221
},
2322
"./*": {
24-
"bun": "./src/*",
2523
"import": "./dist/*"
2624
}
2725
},
@@ -41,9 +39,6 @@
4139
"test": "bun test",
4240
"typecheck": "bun --bun tsc --noEmit"
4341
},
44-
"dependencies": {
45-
"dynamodb-toolbox": "^1.9.3"
46-
},
4742
"devDependencies": {
4843
"@biomejs/biome": "^1.9.2",
4944
"@commitlint/cli": "^19.5.0",
@@ -56,6 +51,7 @@
5651
"changelogen": "^0.5.7",
5752
"commitizen": "^4.3.1",
5853
"cz-git": "^1.9.4",
54+
"dynamodb-toolbox": "^1.9.3",
5955
"lint-staged": "^15.2.10",
6056
"simple-git-hooks": "^2.11.1",
6157
"tar": "^7.4.3",

test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { dynamoDb } from './src'
1+
import { dynamoDb } from './dist'
22

33
// eslint-disable-next-line no-console
44
console.log('Starting DynamoDB on port 8000')

0 commit comments

Comments
 (0)