remove empty es6 group; reference original ts_library instead

This commit is contained in:
Damien Elmes 2021-01-02 21:18:10 +10:00
parent 85621867ca
commit 3240fd2e15
3 changed files with 2 additions and 12 deletions

View File

@ -32,9 +32,6 @@ ts_library(
rollup_bundle( rollup_bundle(
name = "congrats", name = "congrats",
srcs = [
"//ts/lib:es6",
],
config_file = "//ts:rollup.config.js", config_file = "//ts:rollup.config.js",
entry_point = "bootstrap.ts", entry_point = "bootstrap.ts",
format = "iife", format = "iife",
@ -45,6 +42,7 @@ rollup_bundle(
deps = [ deps = [
"CongratsPage", "CongratsPage",
"bootstrap", "bootstrap",
"//ts/lib",
"@npm//@rollup/plugin-commonjs", "@npm//@rollup/plugin-commonjs",
"@npm//@rollup/plugin-node-resolve", "@npm//@rollup/plugin-node-resolve",
"@npm//rollup-plugin-terser", "@npm//rollup-plugin-terser",

View File

@ -76,9 +76,6 @@ ts_library(
rollup_bundle( rollup_bundle(
name = "graphs", name = "graphs",
srcs = [
"//ts/lib:es6",
],
config_file = "//ts:rollup.config.js", config_file = "//ts:rollup.config.js",
entry_point = "bootstrap.ts", entry_point = "bootstrap.ts",
format = "iife", format = "iife",
@ -87,6 +84,7 @@ rollup_bundle(
sourcemap = "false", sourcemap = "false",
visibility = ["//visibility:public"], visibility = ["//visibility:public"],
deps = [ deps = [
"//ts/lib",
"bootstrap", "bootstrap",
"@npm//@rollup/plugin-commonjs", "@npm//@rollup/plugin-commonjs",
"@npm//@rollup/plugin-node-resolve", "@npm//@rollup/plugin-node-resolve",

View File

@ -41,12 +41,6 @@ ts_library(
], ],
) )
filegroup(
name = "es6",
output_group = "es6_sources",
visibility = ["//visibility:public"],
)
# Tests # Tests
################ ################