Skip to content

Commit

Permalink
[Master] Bug [AI/1DS] New minified bundles are corrupting global scope (
Browse files Browse the repository at this point in the history
  • Loading branch information
MSNev authored Sep 19, 2023
1 parent 8797f59 commit 94098dd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions rollup.base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ const browserRollupConfigFactory = (banner, importCheckNames, targetType, theNam
uglify({
ie8: true,
ie: true,
toplevel: true,
toplevel: false,
compress: {
ie: true,
passes:3,
Expand Down Expand Up @@ -228,7 +228,7 @@ const nodeUmdRollupConfigFactory = (banner, importCheckNames, targetType, theNam
uglify({
ie8: true,
ie: true,
toplevel: true,
toplevel: false,
compress: {
ie: true,
passes:3,
Expand Down
8 changes: 4 additions & 4 deletions tools/chrome-debug-extension/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const generateBackground = (isProduction) => {
uglify({
ie8: true,
ie: true,
toplevel: true,
toplevel: false,
compress: {
ie: true,
passes: 3,
Expand Down Expand Up @@ -111,7 +111,7 @@ const generatePopup = (isProduction) => {
uglify({
ie8: true,
ie: true,
toplevel: true,
toplevel: false,
compress: {
ie: true,
passes: 3,
Expand Down Expand Up @@ -154,7 +154,7 @@ const generateContentLoad = () => {
uglify({
ie8: true,
ie: true,
toplevel: true,
toplevel: false,
compress: {
ie: true,
passes: 3,
Expand Down Expand Up @@ -199,7 +199,7 @@ const generatePageHelper = () => {
uglify({
ie8: true,
ie: true,
toplevel: true,
toplevel: false,
compress: {
ie: true,
passes: 3,
Expand Down
6 changes: 3 additions & 3 deletions tools/rollup-es3/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const nodeUmdRollupConfigFactory = (isProduction) => {
uglify({
ie8: true,
ie: true,
toplevel: true,
toplevel: false,
compress: {
ie: true,
passes:3,
Expand Down Expand Up @@ -95,7 +95,7 @@ const moduleRollupConfigFactory = (format, isProduction) => {
uglify({
ie8: true,
ie: true,
toplevel: true,
toplevel: false,
compress: {
ie: true,
passes:3,
Expand All @@ -113,7 +113,7 @@ const moduleRollupConfigFactory = (format, isProduction) => {
minify({
ie8: true,
ie: true,
toplevel: true,
toplevel: false,
compress: {
ie: true,
passes:3,
Expand Down
6 changes: 3 additions & 3 deletions tools/shims/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const browserUmdRollupConfigFactory = (isProduction) => {
uglify({
ie8: true,
ie: true,
toplevel: true,
toplevel: false,
compress: {
ie: true,
passes:3,
Expand Down Expand Up @@ -96,7 +96,7 @@ const moduleRollupConfigFactory = (format, isProduction) => {
uglify({
ie8: true,
ie: true,
toplevel: true,
toplevel: false,
compress: {
ie: true,
passes:3,
Expand All @@ -114,7 +114,7 @@ const moduleRollupConfigFactory = (format, isProduction) => {
minify({
ie8: true,
ie: true,
toplevel: true,
toplevel: false,
compress: {
ie: true,
passes:3,
Expand Down

0 comments on commit 94098dd

Please sign in to comment.