Skip to content

Commit 3a8a999

Browse files
authored
set the correct name space for tfjs-data in rollup (#598)
1 parent 62f4f9c commit 3a8a999

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

speech-commands/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tensorflow-models/speech-commands",
3-
"version": "0.5.2",
3+
"version": "0.5.3",
44
"description": "Speech-command recognizer in TensorFlow.js",
55
"main": "dist/index.js",
66
"unpkg": "dist/speech-commands.min.js",

speech-commands/rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function config({ plugins = [], output = {} }) {
5151
globals: {
5252
'@tensorflow/tfjs-core': 'tf',
5353
'@tensorflow/tfjs-layers': 'tf',
54-
'@tensorflow/tfjs-data': 'tf',
54+
'@tensorflow/tfjs-data': 'tf.data',
5555
},
5656
...output
5757
},

speech-commands/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/** @license See the LICENSE file. */
22

33
// This code is auto-generated, do not modify this file!
4-
const version = '0.5.2';
4+
const version = '0.5.3';
55
export {version};

0 commit comments

Comments
 (0)