@vixoniccom/menu-daily 0.1.0 → 0.1.1

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,7 +1,14 @@
1
- # Change Log
1
+ # Changelog
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### 0.1.1 (2024-05-22)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * configuration label was corrected ([ebc6b85](https://bitbucket.org/vixonic_dev/menu-daily/commit/ebc6b85ab818004ac98011f6a2daf1c8f76335bb))
11
+
5
12
  <a name="0.1.0"></a>
6
13
  # 0.1.0 (2018-08-22)
7
14
 
package/build.zip CHANGED
Binary file
@@ -168,7 +168,7 @@
168
168
  {
169
169
  "type": "text-format",
170
170
  "id": "itemTitleTextFormat",
171
- "label": "Formato del tíltulo"
171
+ "label": "Formato del título"
172
172
  },
173
173
  {
174
174
  "type": "color-picker",
package/package.json CHANGED
@@ -10,16 +10,21 @@
10
10
  "author": {
11
11
  "name": ""
12
12
  },
13
- "version": "0.1.0",
13
+ "version": "0.1.1",
14
14
  "scripts": {
15
15
  "prepublish": "vixonic-module-packager --mode build",
16
16
  "watch": "vixonic-module-packager --mode watch",
17
- "run": "vixonic-module-packager --mode run"
17
+ "run": "vixonic-module-packager --mode run",
18
+ "release": "standard-version",
19
+ "prerelease-beta": "standard-version --prerelease beta",
20
+ "prerelease-dev": "standard-version --prerelease dev"
18
21
  },
19
22
  "devDependencies": {
20
23
  "@types/node": "^8.0.14",
21
24
  "@types/react": "^15.0.38",
22
- "@types/react-dom": "^15.5.1"
25
+ "@types/react-dom": "^15.5.1",
26
+ "@vixoniccom/module-packager": "^2.9.1",
27
+ "standard-version": "^9.5.0"
23
28
  },
24
29
  "dependencies": {
25
30
  "animejs": "^2.0.2",
package/src/dataLoader.ts CHANGED
@@ -141,7 +141,7 @@ export class DataLoader {
141
141
  }, {})
142
142
  logger.log(menuData)
143
143
  return menuData
144
- } catch (e) {
144
+ } catch (e: any) {
145
145
  this.onError && this.onError(e)
146
146
  return undefined
147
147
  }
Binary file