FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
codeql/javascript/BUILD.bazel at codeql-cli/v2.16.1 · github/codeql · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
github
/
codeql
Public
Notifications
You must be signed in to change notification settings
Fork
2.1k
Star
10k
Code
Issues
998
Pull requests
462
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
codeql
/
javascript
/
BUILD.bazel
Copy path
More file actions
More file actions
Latest commit
History
History
History
48 lines (42 loc) · 1.17 KB
Breadcrumbs
codeql
/
javascript
/
BUILD.bazel
Copy path
File metadata and controls
48 lines (42 loc) · 1.17 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
load
(
"@//:dist.bzl"
,
"dist"
)
load
(
"@rules_pkg//pkg:mappings.bzl"
,
"pkg_files"
)
load
(
"@//buildutils-internal:zipmerge.bzl"
,
"zipmerge"
)
package
(
default_visibility
=
[
"//visibility:public"
])
alias
(
name
=
"dbscheme"
,
actual
=
"//javascript/ql/lib:dbscheme"
,
)
alias
(
name
=
"dbscheme-stats"
,
actual
=
"//javascript/ql/lib:dbscheme-stats"
,
)
pkg_files
(
name
=
"dbscheme-group"
,
srcs
=
[
":dbscheme"
,
":dbscheme-stats"
,
],
strip_prefix
=
None
,
)
dist
(
name
=
"javascript-extractor-pack"
,
srcs
=
[
":dbscheme-group"
,
"//javascript/downgrades"
,
"//javascript/externs"
,
"//javascript/extractor:tools-extractor"
,
"@//language-packs/javascript:resources"
,
],
prefix
=
"javascript"
,
)
# We have to zipmerge in the typescript parser wrapper, as it's generated by a genrule
# and we don't know a list of its output files. Therefore, we sidestep the
# rules_pkg tooling here, and generate the zip for the language pack manually.
zipmerge
(
name
=
"javascript"
,
srcs
=
[
":javascript-extractor-pack.zip"
,
"//javascript/extractor/lib/typescript"
,
],
out
=
"javascript.zip"
,
)
Back
|
FazBrowse Home
|
New Git URL