Skip to content

Commit 2b451ab

Browse files
committed
Update deps
1 parent 0ef4817 commit 2b451ab

File tree

4 files changed

+4705
-2492
lines changed

4 files changed

+4705
-2492
lines changed

build/build-css.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ sass.render({
2929
autoprefixer({ browsers: ['> 5%'] }),
3030
postcssReport({ clearMessages: true })
3131
]);
32-
prefixer.process(result.css).then(res => {
32+
prefixer.process(result.css, { from: undefined }).then(res => {
3333
res.warnings().forEach((warn) => {
3434
console.warn(warn.toString());
3535
});

build/config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ const banner = readFileSync('./build/banner.js', 'utf-8')
3737
export default [
3838
{
3939
external,
40-
banner,
41-
globals,
4240
input: './src/base.js',
4341
output: {
42+
banner,
43+
globals,
4444
file: './dist/ol-contextmenu.js',
4545
format: 'umd',
4646
name: 'ContextMenu',
@@ -58,10 +58,10 @@ export default [
5858
},
5959
{
6060
external,
61-
banner,
62-
globals,
6361
input: './src/base.js',
6462
output: {
63+
banner,
64+
globals,
6565
file: './dist/ol-contextmenu-debug.js',
6666
format: 'umd',
6767
name: 'ContextMenu',

0 commit comments

Comments
 (0)