Skip to content

Commit 2a8e7b9

Browse files
authored
Merge branch 'master' into patch-1
2 parents c076a07 + a1c82eb commit 2a8e7b9

19 files changed

+101
-492
lines changed

make-webpack-config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ module.exports = function(rules, options) {
6161
}
6262

6363
if( specialOptions.minimize ) {
64-
6564
plugins.push(
6665
new webpack.optimize.UglifyJsPlugin({
6766
sourceMap: true,

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@
109109
"karma-sourcemap-loader": "^0.3.7",
110110
"karma-webpack": "2.0.3",
111111
"less": "2.7.2",
112-
"less-loader": "4.0.4",
113112
"license-checker": "^11.0.0",
114113
"mocha": "^3.4.2",
115114
"node-sass": "^4.5.0",

src/core/path-translator.js

Lines changed: 0 additions & 67 deletions
This file was deleted.

src/core/plugins/split-pane-mode/components/split-pane-mode.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import React from "react"
22
import PropTypes from "prop-types"
33
import SplitPane from "react-split-pane"
4-
import "./split-pane-mode.less"
54

65
const MODE_KEY = ["split-pane-mode"]
76
const MODE_LEFT = "left"

src/core/plugins/split-pane-mode/components/split-pane-mode.less

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/core/plugins/util/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import { shallowEqualKeys } from "core/utils"
2-
import { transformPathToArray } from "core/path-translator"
32

43
export default function() {
54
return {
6-
fn: { shallowEqualKeys, transformPathToArray }
5+
fn: { shallowEqualKeys }
76
}
87
}

src/plugins/topbar/topbar.less

Lines changed: 0 additions & 52 deletions
This file was deleted.

src/standalone/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
import StandaloneLayout from "./layout"
2-
import "../style/main.scss"
3-
42
import TopbarPlugin from "plugins/topbar"
53
import ConfigsPlugin from "plugins/configs"
64

src/style/_split-pane-mode.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.Resizer.vertical.disabled {
2+
display: none;
3+
}

src/style/main.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@
1414
@import 'information';
1515
@import 'authorize';
1616
@import 'errors';
17+
@import 'split-pane-mode';
1718
}

0 commit comments

Comments
 (0)