Skip to content

Commit 0cebb3e

Browse files
authored
Fix: release 는 배포할 패키지에대한 작업만 정의
Fix: release 는 배포할 패키지에대한 작업만 정의
2 parents b994f5f + c465077 commit 0cebb3e

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,7 @@ jobs:
3636
run: yarn
3737

3838
- name: Lint
39-
run: yarn lint
40-
41-
- name: Build Packages
42-
run: yarn build
39+
run: yarn lint:grid
4340

4441
- name: Create Release Pull Request or Publish to npm
4542
id: changesets

.yarn/install-state.gz

12 Bytes
Binary file not shown.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
"build": "turbo run build",
66
"dev": "turbo run dev",
77
"lint": "turbo run lint",
8+
"lint:grid": "turbo run lint --filter=@simple-motion-dnd/grid",
89
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
910
"check-types": "turbo run check-types",
1011
"changeset": "changeset",
1112
"version-packages": "changeset version",
12-
"release": "turbo run build --filter=@simple-motion-dnd/grid && changeset publish"
13+
"release:grid": "turbo run build --filter=@simple-motion-dnd/grid && changeset publish"
1314
},
1415
"devDependencies": {
1516
"@changesets/changelog-github": "^0.5.1",

0 commit comments

Comments
 (0)