Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

Commit

Permalink
Fixes to prepare for enabling CircleCI (#3)
Browse files Browse the repository at this point in the history
* Re-run npm install

* Add command to clean out the mocha types
  • Loading branch information
draffensperger committed Jan 17, 2019
1 parent ff4c609 commit e5acc63
Show file tree
Hide file tree
Showing 5 changed files with 395 additions and 8,298 deletions.
7 changes: 7 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ jobs:

- run: npm install

# Remove the mocha type references in @opencensus/core. This has been
# fixed in the upstream package on GitHub, but has not been released on
# NPM yet. We can't install the package directly from GitHub because NPM
# only supports that for packages in the root folder of the repo.
# See https://github.com/census-instrumentation/opencensus-node/pull/254
- run: find . -type f | grep '@opencensus/core' | xargs sed -i '/types="mocha"/d'

- save_cache:
paths:
- node_modules
Expand Down

0 comments on commit e5acc63

Please sign in to comment.