Skip to content

Commit c8495f0

Browse files
fix: fix the build dir missing from releases (#98)
This was caused by the fact that `install` (and hence `compile`) was not called prior to publishing. As a result, the build directory was never created.
1 parent 1668544 commit c8495f0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.circleci/config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,9 @@ jobs:
209209
- run:
210210
name: Set NPM authentication.
211211
command: 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc'
212+
- run:
213+
name: Install modules and dependencies.
214+
command: npm install
212215
- run:
213216
name: Publish the module to npm.
214217
command: npm publish

0 commit comments

Comments
 (0)