locizify 7.0.4 → 8.0.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ### 8.0.0
2
+
3
+ - update i18next-locize-backend
4
+ - log/error is shown if cdnType is not defined, because of changing default to 'standard' instead of 'pro'
5
+
1
6
  ### 7.0.4
2
7
 
3
8
  - update i18next-locize-backend
@@ -7559,6 +7559,9 @@
7559
7559
  Object.keys(apiPaths).forEach(function (ap) {
7560
7560
  if (!orgPassedOptions[ap]) _this.options[ap] = apiPaths[ap];
7561
7561
  });
7562
+ if (!orgPassedOptions.cdnType) {
7563
+ console.error('[i18next-locize-backend] In the next major version, the default \'cdnType\' will be \'standard\'. Please set \'cdnType\' explicitly in your options to avoid missing translations.');
7564
+ }
7562
7565
  if (this.options.pull) {
7563
7566
  console.warn('The pull API was removed use "private: true" option instead: https://www.locize.com/docs/api#fetch-private-namespace-resources');
7564
7567
  }