Skip to content

Commit

Permalink
wip In package.json travis script add --trace-warnings
Browse files Browse the repository at this point in the history
When build runs on travis we get a warning:
(node:5723) Warning: Accessing non-existent property 'VERSION' of module exports inside circular dependency
307(Use `node --trace-warnings ...` to show where the warning was created)kj

This is an attempt to diagnose this issue.
  • Loading branch information
bcowgill committed Mar 18, 2021
1 parent 4efc0e9 commit 8f24699
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"lint": "grunt lint",
"test": "grunt",
"test:tap": "mocha --reporter tap",
"travis": "nyc --reporter lcovonly mocha",
"travis": "NODE_OPTIONS=--trace-warnings nyc --reporter lcovonly mocha",
"watch": "grunt watch",
"develop": "grunt all watch --force",
"strip": "./scripts/strip.js",
Expand Down

0 comments on commit 8f24699

Please sign in to comment.