Skip to content

Remove pull_font_svg step #4062

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ node_modules

build/*
!build/plotcss.js
!build/ploticon.js
!build/README.md

npm-debug.log*
Expand Down
1 change: 0 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
build/*
!build/plotcss.js
!build/ploticon.js
!build/README.md

devtools
Expand Down
16 changes: 0 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@
"run-series": "^1.1.8",
"through2": "^3.0.1",
"true-case-path": "^1.0.3",
"watchify": "^3.11.1",
"xml2js": "^0.4.19"
"watchify": "^3.11.1"
}
}
2 changes: 1 addition & 1 deletion src/components/modebar/buttons.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var Registry = require('../../registry');
var Plots = require('../../plots/plots');
var axisIds = require('../../plots/cartesian/axis_ids');
var Lib = require('../../lib');
var Icons = require('../../../build/ploticon');
var Icons = require('../../fonts/ploticon');

var _ = Lib._;

Expand Down
2 changes: 1 addition & 1 deletion src/components/modebar/modebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var d3 = require('d3');
var isNumeric = require('fast-isnumeric');

var Lib = require('../../lib');
var Icons = require('../../../build/ploticon');
var Icons = require('../../fonts/ploticon');
var Parser = new DOMParser();

/**
Expand Down
2 changes: 1 addition & 1 deletion src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ register([
]);

// plot icons
exports.Icons = require('../build/ploticon');
exports.Icons = require('./fonts/ploticon');

// unofficial 'beta' plot methods, use at your own risk
exports.Plots = require('./plots/plots');
Expand Down
8 changes: 8 additions & 0 deletions build/ploticon.js → src/fonts/ploticon.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/**
* Copyright 2012-2019, Plotly, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

'use strict';

module.exports = {
Expand Down
45 changes: 0 additions & 45 deletions src/fonts/ploticon/_ploticon.scss

This file was deleted.

Loading