Skip to content

Commit

Permalink
Get projector working. It's just using our own esbuild target.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmd3k committed Sep 23, 2022
1 parent b80f5bf commit e91b79a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion tensorboard/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ py_library(
name = "dynamic_plugins",
srcs_version = "PY3",
deps = [
# "//tensorboard/plugins/projector:projector_plugin",
"//tensorboard/plugins/projector:projector_plugin",
],
)

Expand Down
8 changes: 4 additions & 4 deletions tensorboard/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ def get_dynamic_plugins():
[1]: https://packaging.python.org/specifications/entry-points/
"""
return [
# entry_point.resolve()
# for entry_point in pkg_resources.iter_entry_points(
# "tensorboard_plugins"
# )
entry_point.resolve()
for entry_point in pkg_resources.iter_entry_points(
"tensorboard_plugins"
)
]
8 changes: 4 additions & 4 deletions tensorboard/webapp/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ tf_ng_module(
"app_container.ng.html",
],
deps = [
# ":app_state",
":app_state",
":mat_icon",
":oss_plugins_module",
# ":selectors",
":selectors",
":store_module",
"//tensorboard/components/experimental/plugin_util:plugin_host",
"//tensorboard/webapp/alert",
Expand All @@ -124,10 +124,10 @@ tf_ng_module(
"//tensorboard/webapp/hparams",
"//tensorboard/webapp/persistent_settings",
"//tensorboard/webapp/plugins",
# "//tensorboard/webapp/reloader",
"//tensorboard/webapp/reloader",
"//tensorboard/webapp/routes",
"//tensorboard/webapp/runs",
# "//tensorboard/webapp/runs_legacy",
"//tensorboard/webapp/runs_legacy",
"//tensorboard/webapp/settings",
"//tensorboard/webapp/tb_wrapper",
"@npm//@angular/core",
Expand Down
2 changes: 0 additions & 2 deletions tensorboard/webapp/core/core_module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ import {
getConfig,
} from './store/core_initial_state_provider';
import {CORE_FEATURE_KEY} from './store/core_types';
import {DeepLinkModule} from '../deeplink/deeplink_module';

export function getSideBarWidthSetting() {
return createSelector<State, number, PersistableSettings>(
Expand All @@ -42,7 +41,6 @@ export function getSideBarWidthSetting() {

@NgModule({
imports: [
DeepLinkModule,
EffectsModule.forFeature([CoreEffects]),
StoreModule.forFeature(CORE_FEATURE_KEY, reducers, CORE_STORE_CONFIG_TOKEN),
TBServerDataSourceModule,
Expand Down

0 comments on commit e91b79a

Please sign in to comment.