mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
Remove unneeded path.resolve
.
This commit is contained in:
parent
59197765f4
commit
02c4444f6c
@ -8,7 +8,7 @@
|
||||
const rollup = require('rollup')
|
||||
const path = require('path')
|
||||
const babel = require('rollup-plugin-babel')
|
||||
const banner = require(path.resolve(__dirname, './banner.js'))
|
||||
const banner = require('./banner.js')
|
||||
const TEST = process.env.NODE_ENV === 'test'
|
||||
|
||||
const plugins = [
|
||||
|
@ -1,7 +1,7 @@
|
||||
const path = require('path')
|
||||
const babel = require('rollup-plugin-babel')
|
||||
const resolve = require('rollup-plugin-node-resolve')
|
||||
const banner = require(path.resolve(__dirname, './banner.js'))
|
||||
const banner = require('./banner.js')
|
||||
|
||||
const BUNDLE = process.env.BUNDLE === 'true'
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user