Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
move make_schema from tasks/util to tasks
  • Loading branch information
archmoj committed Jun 26, 2021
commit df2670df24c46421ddf76cebd4005007e4711536
2 changes: 1 addition & 1 deletion tasks/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var prependFile = require('prepend-file');
var constants = require('./util/constants');
var common = require('./util/common');
var _bundle = require('./util/browserify_wrapper');
var makeSchema = require('./util/make_schema');
var makeSchema = require('./make_schema');
var wrapLocale = require('./util/wrap_locale');

var header = constants.licenseDist + '\n';
Expand Down
2 changes: 1 addition & 1 deletion tasks/util/make_schema.js → tasks/make_schema.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var fs = require('fs');
var path = require('path');
var plotlyNode = require('./plotly_node');
var plotlyNode = require('./util/plotly_node');

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