Skip to content

Commit a3354b2

Browse files
committed
chore: update publish-package.yml and tsconfig.json for build process adjustments
1 parent e2d380b commit a3354b2

File tree

7 files changed

+13
-9
lines changed

7 files changed

+13
-9
lines changed

.github/workflows/publish-package.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ jobs:
5353
echo "//registry.npmjs.org/:_authToken=${{ secrets.npm_token }}" >> .npmrc
5454
git config --global user.email "[email protected]"
5555
git config --global user.name "sendbird-sdk-deployment"
56-
- name: 'build packages'
57-
run: yarn build
5856
- name: 'publish to npm'
5957
env:
6058
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

packages/uikit-chat-hooks/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
}
1010
],
1111
"compilerOptions": {
12-
"outDir": "./lib/typescript"
12+
"outDir": "./lib/typescript",
13+
"noEmit": false
1314
}
1415
}

packages/uikit-react-native-foundation/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
}
77
],
88
"compilerOptions": {
9-
"outDir": "./lib/typescript"
9+
"outDir": "./lib/typescript",
10+
"noEmit": false
1011
}
1112
}

packages/uikit-react-native/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
}
1313
],
1414
"compilerOptions": {
15-
"outDir": "./lib/typescript"
15+
"outDir": "./lib/typescript",
16+
"noEmit": false
1617
}
1718
}

packages/uikit-testing-tools/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
}
77
],
88
"compilerOptions": {
9-
"outDir": "./lib/typescript"
9+
"outDir": "./lib/typescript",
10+
"noEmit": false
1011
}
1112
}

packages/uikit-utils/tsconfig.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": "../../tsconfig",
33
"references": [],
44
"compilerOptions": {
5-
"outDir": "./lib/typescript"
5+
"outDir": "./lib/typescript",
6+
"noEmit": false
67
}
7-
}
8+
}

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
"resolveJsonModule": true,
2323
"skipLibCheck": true,
2424
"strict": true,
25-
"target": "esnext"
25+
"target": "esnext",
26+
"noEmit": true
2627
},
2728
"exclude": ["packages/*/lib", "packages/flipper-plugin-sendbird-chat"]
2829
}

0 commit comments

Comments
 (0)