Skip to content

Commit 63933aa

Browse files
authored
Merge pull request #34 from whereby/havard/pro-610-fix-missing-dist-folder-in-npm-package-2
Fix npm deploy
2 parents f595f9e + 0d58c2f commit 63933aa

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ jobs:
8888
node-version: "16.x"
8989
registry-url: "https://registry.npmjs.org"
9090

91+
- name: Build
92+
uses: ./.github/actions/build
93+
9194
- name: Publish on npm
9295
run: |
9396
TAG=${{ needs.get_version_tag.outputs.tag }}

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@whereby.com/browser-sdk",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"description": "Configurable web component for embedding Whereby video rooms in web applications",
55
"author": "Whereby AS",
66
"license": "MIT",
@@ -13,6 +13,7 @@
1313
"main": "dist/lib.cjs.js",
1414
"module": "dist/lib.esm.js",
1515
"type": "module",
16+
"files": ["dist/**/*.js", "dist/*.d.ts"],
1617
"scripts": {
1718
"prebuild": "rimraf dist",
1819
"build": "rollup -c",

0 commit comments

Comments
 (0)