File tree 3 files changed +0
-5
lines changed
3 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,7 @@ export default environment => {
11
11
currentFileInfo . currentDirectory : currentFileInfo . entryPath ;
12
12
13
13
const fragmentStart = filePath . indexOf ( '#' ) ;
14
- let fragment = '' ;
15
14
if ( fragmentStart !== - 1 ) {
16
- fragment = filePath . slice ( fragmentStart ) ;
17
15
filePath = filePath . slice ( 0 , fragmentStart ) ;
18
16
}
19
17
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import UrlFileManager from './url-file-manager';
4
4
import createFromEnvironment from '../less' ;
5
5
const less = createFromEnvironment ( environment , [ new FileManager ( ) , new UrlFileManager ( ) ] ) ;
6
6
import lesscHelper from './lessc-helper' ;
7
- import path from 'path' ;
8
7
9
8
// allow people to create less with their own environment
10
9
less . createFromEnvironment = createFromEnvironment ;
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ import Node from './node';
2
2
import Paren from './paren' ;
3
3
import Comment from './comment' ;
4
4
import Dimension from './dimension' ;
5
- import * as Constants from '../constants' ;
6
- const MATH = Constants . Math ;
7
5
8
6
const Expression = function ( value , noSpacing ) {
9
7
this . value = value ;
You can’t perform that action at this time.
0 commit comments