mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
b4c40c5d55
Detect the correct workspace for the source maps dep.
18 lines
469 B
Python
18 lines
469 B
Python
load("//tools:defaults.bzl", "nodejs_binary")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
nodejs_binary(
|
|
name = "generate-example-zip",
|
|
data = [
|
|
"exampleZipper.mjs",
|
|
"//aio/tools/transforms/examples-package:files",
|
|
"//aio/tools/transforms/helpers:files",
|
|
"@aio_npm//archiver",
|
|
"@aio_npm//canonical-path",
|
|
"@aio_npm//fs-extra",
|
|
"@aio_npm//globby",
|
|
],
|
|
entry_point = "generateZip.mjs",
|
|
)
|