-
Notifications
You must be signed in to change notification settings - Fork 524
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(rollup): npm requires an index.js file
- Loading branch information
Showing
2 changed files
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// npm install throws if there is no JS in the package | ||
// npm ERR! path /home/alexeagle/Projects/angular/node_modules/@bazel/rollup/index.js | ||
// npm ERR! code ENOENT | ||
// npm ERR! errno -2 | ||
// npm ERR! syscall chmod | ||
// npm ERR! enoent ENOENT: no such file or directory, chmod | ||
// '/home/alexeagle/Projects/angular/node_modules/@bazel/rollup/index.js' npm ERR! enoent This is | ||
// related to npm not being able to find a file. npm ERR! enoent | ||
throw new Error('@bazel/rollup package has no executable JS code'); |