Skip to content

Commit 22ddd9b

Browse files
authored
Release: v0.0.3
Release: v0.0.3
2 parents 841d11e + 4517bf4 commit 22ddd9b

File tree

5 files changed

+230
-174
lines changed

5 files changed

+230
-174
lines changed

.yarn/install-state.gz

6.69 KB
Binary file not shown.

packages/simple-motion-dnd-grid/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @simple-motion-dnd/grid
22

3+
## 0.0.3
4+
5+
### Patch Changes
6+
7+
- package 의존성 수정
8+
39
## 0.0.1
410

511
### Patch Changes
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@simple-motion-dnd/grid",
3-
"version": "0.0.1",
3+
"version": "0.0.3",
44
"main": "./dist/index.cjs",
5-
"module": "./dist/index.mjs",
5+
"module": "./dist/index.js",
66
"types": "./dist/index.d.ts",
77
"exports": {
88
".": {
99
"types": "./dist/index.d.ts",
10-
"import": "./dist/index.mjs",
10+
"import": "./dist/index.js",
1111
"require": "./dist/index.cjs",
1212
"default": "./dist/index.cjs"
1313
}
@@ -20,7 +20,7 @@
2020
},
2121
"repository": {
2222
"type": "git",
23-
"url": "https://github.com/casentino/simple-motion-dnd.git"
23+
"url": "git+https://github.com/casentino/simple-motion-dnd.git"
2424
},
2525
"publishConfig": {
2626
"access": "public"
@@ -29,19 +29,19 @@
2929
"@simple-motion-dnd/eslint-config": "*",
3030
"@simple-motion-dnd/typescript-config": "*",
3131
"@types/node": "^22.15.3",
32-
"@types/react": "19.1.0",
33-
"@types/react-dom": "19.1.1",
32+
"@types/react": "^18",
33+
"@types/react-dom": "^18",
3434
"eslint": "^9.34.0",
35+
"react": "^18",
36+
"react-dom": "^18",
3537
"typescript": "5.9.2"
3638
},
3739
"dependencies": {
38-
"motion": "^12.23.22",
39-
"react": "^19.1.0",
40-
"react-dom": "^19.1.0"
40+
"motion": "^12.23.22"
4141
},
4242
"peerDependencies": {
4343
"motion": "^12.23.22",
44-
"react": "^19.1.0",
45-
"react-dom": "^19.1.0"
44+
"react": ">=18",
45+
"react-dom": ">=18"
4646
}
4747
}

packages/simple-motion-dnd-grid/tsup.config.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@ import { defineConfig } from 'tsup';
22

33
export default defineConfig({
44
entry: ['src/index.ts'],
5-
clean: ['./dist'],
5+
clean: true,
66
treeshake: true,
77
dts: true,
88
format: ['esm', 'cjs'],
9-
outDir: './dist',
9+
outDir: 'dist',
1010
sourcemap: false,
1111
minify: true,
1212
splitting: true,
1313
platform: 'browser',
14-
external: ['react', 'react-dom', 'framer-motion'],
14+
external: ['react', 'react-dom', 'motion'],
1515
tsconfig: './tsconfig.json',
16+
outExtension({ format }) {
17+
return format === 'cjs' ? { js: '.cjs' } : { js: '.js' };
18+
},
1619
});

0 commit comments

Comments
 (0)