Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmagolan committed Apr 9, 2019
1 parent b43605e commit b52cb33
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion internal/common/node_module_info.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ NodeModuleInfo = provider(
NodeModuleSources = provider(
doc = "Provides sources for npm dependencies installed with yarn_install and npm_install rules",
fields = {
"sources": "Source files that are npm dependencies",
"scripts": "Source files that are javascript named-UMD or named-AMD modules for use in rules such as ts_devserver",
"sources": "Source files that are npm dependencies",
"workspace": "The workspace name that the npm dependencies are provided from",
},
)
Expand Down
6 changes: 3 additions & 3 deletions internal/npm_install/node_module_library.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ node_module_library = rule(
doc = "The list of files that comprise the package",
allow_files = True,
),
"deps": attr.label_list(
doc = "Transitive dependencies of the package",
),
"scripts": attr.label_list(
doc = "A subset of srcs that are javascript named-UMD or named-AMD scripts for use in rules such as ts_devserver",
allow_files = True,
),
"deps": attr.label_list(
doc = "Transitive dependencies of the package",
),
},
doc = "Defines an npm package under node_modules",
)

0 comments on commit b52cb33

Please sign in to comment.