Skip to content

Commit df2670d

Browse files
committed
move make_schema from tasks/util to tasks
1 parent e43867f commit df2670d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tasks/bundle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var prependFile = require('prepend-file');
66
var constants = require('./util/constants');
77
var common = require('./util/common');
88
var _bundle = require('./util/browserify_wrapper');
9-
var makeSchema = require('./util/make_schema');
9+
var makeSchema = require('./make_schema');
1010
var wrapLocale = require('./util/wrap_locale');
1111

1212
var header = constants.licenseDist + '\n';

tasks/util/make_schema.js renamed to tasks/make_schema.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var fs = require('fs');
22
var path = require('path');
3-
var plotlyNode = require('./plotly_node');
3+
var plotlyNode = require('./util/plotly_node');
44

55
module.exports = function makeSchema(plotlyPath, schemaPath) {
66
var Plotly = plotlyNode(plotlyPath);

0 commit comments

Comments
 (0)