Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Master] Bug [AI/1DS] New minified bundles are corrupting global scope #2155

Merged
merged 1 commit into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading