feat: refactoring project
This commit is contained in:
6
node_modules/postcss/lib/map-generator.js
generated
vendored
6
node_modules/postcss/lib/map-generator.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
'use strict'
|
||||
|
||||
let { SourceMapConsumer, SourceMapGenerator } = require('source-map-js')
|
||||
let { dirname, relative, resolve, sep } = require('path')
|
||||
let { SourceMapConsumer, SourceMapGenerator } = require('source-map-js')
|
||||
let { pathToFileURL } = require('url')
|
||||
|
||||
let Input = require('./input')
|
||||
@@ -70,7 +70,7 @@ class MapGenerator {
|
||||
for (let i = this.root.nodes.length - 1; i >= 0; i--) {
|
||||
node = this.root.nodes[i]
|
||||
if (node.type !== 'comment') continue
|
||||
if (node.text.indexOf('# sourceMappingURL=') === 0) {
|
||||
if (node.text.startsWith('# sourceMappingURL=')) {
|
||||
this.root.removeChild(i)
|
||||
}
|
||||
}
|
||||
@@ -143,7 +143,7 @@ class MapGenerator {
|
||||
source: ''
|
||||
}
|
||||
|
||||
let lines, last
|
||||
let last, lines
|
||||
this.stringify(this.root, (str, node, type) => {
|
||||
this.css += str
|
||||
|
||||
|
||||
Reference in New Issue
Block a user