We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b72f2c commit 2ababdfCopy full SHA for 2ababdf
2 files changed
packages/rollup/src/BUILD.bazel
@@ -33,6 +33,7 @@ filegroup(
33
srcs = [
34
"BUILD.bazel",
35
"index.bzl",
36
+ "index.js",
37
"package.json",
38
"rollup.config.js",
39
"rollup_bundle.bzl",
packages/rollup/src/index.js
@@ -0,0 +1,9 @@
1
+// npm install throws if there is no JS in the package
2
+// npm ERR! path /home/alexeagle/Projects/angular/node_modules/@bazel/rollup/index.js
3
+// npm ERR! code ENOENT
4
+// npm ERR! errno -2
5
+// npm ERR! syscall chmod
6
+// npm ERR! enoent ENOENT: no such file or directory, chmod
7
+// '/home/alexeagle/Projects/angular/node_modules/@bazel/rollup/index.js' npm ERR! enoent This is
8
+// related to npm not being able to find a file. npm ERR! enoent
9
+throw new Error('@bazel/rollup package has no executable JS code');
0 commit comments