Skip to content

Commit

Permalink
Merge pull request #2109 from docsifyjs/update-rollup
Browse files Browse the repository at this point in the history
chore: update rollup
  • Loading branch information
trusktr committed Jul 16, 2023
2 parents c2428f7 + 898993b commit 4d560c0
Show file tree
Hide file tree
Showing 3 changed files with 523 additions and 753 deletions.
15 changes: 5 additions & 10 deletions build/build.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import rollup from 'rollup';
import buble from 'rollup-plugin-buble';
import commonjs from 'rollup-plugin-commonjs';
import nodeResolve from 'rollup-plugin-node-resolve';
import { uglify } from 'rollup-plugin-uglify';
import replace from 'rollup-plugin-replace';
import * as rollup from 'rollup';
import commonjs from '@rollup/plugin-commonjs';
import nodeResolve from '@rollup/plugin-node-resolve';
import uglify from '@rollup/plugin-terser';
import replace from '@rollup/plugin-replace';
import chokidar from 'chokidar';
import path from 'path';
import { relative } from './util.js';
Expand All @@ -28,10 +27,6 @@ async function build(opts) {
.rollup({
input: opts.input,
plugins: (opts.plugins || []).concat([
buble({
transforms: {
dangerousForOf: true
}}),
commonjs(),
nodeResolve(),
replace({
Expand Down

1 comment on commit 4d560c0

@vercel
Copy link

@vercel vercel bot commented on 4d560c0 Jul 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.