Skip to content

Commit

Permalink
Upgrade dependencies (#5)
Browse files Browse the repository at this point in the history
* Upgrade dependencies

* Fix dependency order

* Fix Rollup build
  • Loading branch information
nwalters512 authored Nov 14, 2024
1 parent 16ef10c commit c21dcd2
Show file tree
Hide file tree
Showing 3 changed files with 965 additions and 630 deletions.
5 changes: 4 additions & 1 deletion .config/rollup.config.js → .config/rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import babel from '@rollup/plugin-babel';
import { terser } from 'rollup-plugin-terser';
import terser from '@rollup/plugin-terser';
import path from 'path';
import { fileURLToPath } from 'url';

const __dirname = path.dirname(fileURLToPath(import.meta.url));

var configs = [];
const banner = `/*! @orchidjs/unicode-variants | https://github.com/orchidjs/unicode-variants | Apache License (v2) */`;
Expand Down
Loading

0 comments on commit c21dcd2

Please sign in to comment.