@schukai/monster 2.0.5 → 2.0.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schukai/monster",
3
- "version": "2.0.5",
3
+ "version": "2.0.7",
4
4
  "description": "Monster is a simple library for creating fast, robust and lightweight websites.",
5
5
  "keywords": [
6
6
  "framework",
@@ -125,7 +125,7 @@ export {FocusManager} from "./dom/focusmanager.mjs"
125
125
  export {ATTRIBUTEPREFIX, Assembler} from "./dom/assembler.mjs"
126
126
  export {Translations} from "./i18n/translations.mjs"
127
127
  export {Locale, parseLocale} from "./i18n/locale.mjs"
128
- export {I18nFormatter} from "./i18n/formatter.mjs"
128
+ export {Formatter as I18nFormatter} from "./i18n/formatter.mjs"
129
129
  export {Fetch} from "./i18n/providers/fetch.mjs"
130
130
  export {Provider} from "./i18n/provider.mjs"
131
131
  export {
@@ -137,7 +137,7 @@ function getMonsterVersion() {
137
137
  }
138
138
 
139
139
  /** don't touch, replaced by make with package.json version */
140
- monsterVersion = new Version('2.0.5')
140
+ monsterVersion = new Version('2.0.7')
141
141
 
142
142
  return monsterVersion;
143
143
 
@@ -7,7 +7,7 @@ describe('Monster', function () {
7
7
  let monsterVersion
8
8
 
9
9
  /** don´t touch, replaced by make with package.json version */
10
- monsterVersion = new Version('2.0.5')
10
+ monsterVersion = new Version('2.0.7')
11
11
 
12
12
  let m = getMonsterVersion();
13
13