@rollup/wasm-node 4.22.4 → 4.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.22.4
4
- Sat, 21 Sep 2024 06:10:53 GMT - commit 79c0aba353ca84c0e22c3cfe9eee433ba83f3670
3
+ Rollup.js v4.23.0
4
+ Tue, 01 Oct 2024 07:09:35 GMT - commit ed98e0821e6ad064839f0af46ceca061adbe3f14
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.22.4
4
- Sat, 21 Sep 2024 06:10:53 GMT - commit 79c0aba353ca84c0e22c3cfe9eee433ba83f3670
3
+ Rollup.js v4.23.0
4
+ Tue, 01 Oct 2024 07:09:35 GMT - commit ed98e0821e6ad064839f0af46ceca061adbe3f14
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -273,6 +273,7 @@ const URL_WATCH = 'configuration-options/#watch';
273
273
  // command-line-interface
274
274
  const URL_BUNDLE_CONFIG_AS_CJS = 'command-line-interface/#bundleconfigascjs';
275
275
  const URL_CONFIGURATION_FILES = 'command-line-interface/#configuration-files';
276
+ const URL_GENERATEBUNDLE = 'plugin-development/#generatebundle';
276
277
 
277
278
  function error(base) {
278
279
  throw base instanceof Error ? base : getRollupError(base);
@@ -997,7 +998,7 @@ function warnDeprecation(deprecation, urlSnippet, activeDeprecation, options, pl
997
998
  warnDeprecationWithOptions(deprecation, urlSnippet, activeDeprecation, options.onLog, options.strictDeprecations);
998
999
  }
999
1000
  function warnDeprecationWithOptions(deprecation, urlSnippet, activeDeprecation, log, strictDeprecations, plugin) {
1000
- {
1001
+ if (activeDeprecation || strictDeprecations) {
1001
1002
  const warning = logDeprecation(deprecation, urlSnippet);
1002
1003
  if (strictDeprecations) {
1003
1004
  return error(warning);
@@ -2011,6 +2012,7 @@ exports.ReturnStatement = ReturnStatement;
2011
2012
  exports.StaticBlock = StaticBlock;
2012
2013
  exports.TemplateLiteral = TemplateLiteral;
2013
2014
  exports.URL_AVOIDING_EVAL = URL_AVOIDING_EVAL;
2015
+ exports.URL_GENERATEBUNDLE = URL_GENERATEBUNDLE;
2014
2016
  exports.URL_NAME_IS_NOT_EXPORTED = URL_NAME_IS_NOT_EXPORTED;
2015
2017
  exports.URL_OUTPUT_AMD_BASEPATH = URL_OUTPUT_AMD_BASEPATH;
2016
2018
  exports.URL_OUTPUT_AMD_ID = URL_OUTPUT_AMD_ID;