Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

Commit

Permalink
fix: update to terser@5.3.1 (#40)
Browse files Browse the repository at this point in the history
This release fixes an issue where Terser was not able to resolve certain chained expressions.
  • Loading branch information
ohmlnz committed Dec 10, 2020
1 parent d9b2416 commit 2d491bb
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions plugin/terserTransform/deps.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export type { MinifyOptions } from "../../vendor/terser@5.3.0/terser.d.ts";
export { minify } from "../../vendor/terser@5.3.0/terser.ts";
export type { MinifyOptions } from "../../vendor/terser@5.3.1/terser.d.ts";
export { minify } from "../../vendor/terser@5.3.1/terser.ts";
2 changes: 1 addition & 1 deletion plugin/terserTransform/lock.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"https://unpkg.com/source-map@0.7.3/dist/source-map.js": "84a912cfa28183b00fc9e6e3e017d28cbad0697133e6964e94f15be8129c95f0",
"https://unpkg.com/terser@4.8.0/dist/bundle.min.js": "406370750bbd866572455f365bddcf1777cd6c043e082084d1619799b01ec54e"
"https://unpkg.com/terser@5.3.1/dist/bundle.min.js": "a73988cd235294affcda589da488922ffa4444b74614cbdae6812845d11cda00"
}
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import "https://unpkg.com/source-map@0.7.3/dist/source-map.js";
import "https://unpkg.com/terser@5.3.0/dist/bundle.min.js";
import "https://unpkg.com/terser@5.3.1/dist/bundle.min.js";

import type { minify as minifyfn } from "./terser.d.ts";

Expand Down

0 comments on commit 2d491bb

Please sign in to comment.