mapomodule 1.0.0-alpha.2 → 1.0.0-alpha.6

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 ADDED
@@ -0,0 +1,35 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # [1.0.0-alpha.6](https://github.com/lotrekagency/mapo/compare/v1.0.0-alpha.5...v1.0.0-alpha.6) (2021-12-26)
7
+
8
+ **Note:** Version bump only for package mapomodule
9
+
10
+
11
+
12
+
13
+
14
+ # [1.0.0-alpha.5](https://github.com/lotrekagency/mapo/compare/v1.0.0-alpha.4...v1.0.0-alpha.5) (2021-12-20)
15
+
16
+ **Note:** Version bump only for package mapomodule
17
+
18
+
19
+
20
+
21
+
22
+ # [1.0.0-alpha.4](https://github.com/lotrekagency/mapo/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2021-10-25)
23
+
24
+ **Note:** Version bump only for package mapomodule
25
+
26
+
27
+
28
+
29
+
30
+ # [1.0.0-alpha.3](https://github.com/lotrekagency/mapo/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2021-10-25)
31
+
32
+
33
+ ### Bug Fixes
34
+
35
+ * Corrected load order of modules to prevent missing mapo components in some circumstances ([4fa16fb](https://github.com/lotrekagency/mapo/commit/4fa16fb549ee0e6368fe724c8305ffc789d5c2fc))
package/module.js CHANGED
@@ -20,11 +20,12 @@ export default async function MapoModule(moduleOptions) {
20
20
 
21
21
  this.options = _mergeWith(this.options, mapoDefaults, customMerger)
22
22
 
23
- await this.requireModule(['@nuxtjs/axios', (this.options && this.options.axios) || userModuleOptions.axios || mapoDefaults.axios || {}])
24
- await this.requireModule(['@mapomodule/store'], userModuleOptions.store)
25
- await this.requireModule(['@mapomodule/core'], userModuleOptions)
26
- this.requireModule(['@mapomodule/uikit'], userModuleOptions.ui)
27
- .then(() => this.requireModule(['@mapomodule/routemeta'], userModuleOptions.routemeta))
23
+ this.requireModule(['@nuxtjs/axios', (this.options && this.options.axios) || userModuleOptions.axios || mapoDefaults.axios || {}])
24
+ this.requireModule(['@mapomodule/store'], userModuleOptions.store)
25
+ this.requireModule(['@mapomodule/core'], userModuleOptions)
26
+ /* Await prevents to load routemeta before mapo pages. Also needed to correclty load mapo components */
27
+ await this.requireModule(['@mapomodule/uikit'], userModuleOptions.ui)
28
+ this.requireModule(['@mapomodule/routemeta'], userModuleOptions.routemeta)
28
29
 
29
30
  }
30
31
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mapomodule",
3
- "version": "1.0.0-alpha.2",
3
+ "version": "1.0.0-alpha.6",
4
4
  "description": "Mapo is a nuxt module that helps in the creation of Administration Panels.",
5
5
  "author": "bnznamco <gabriele.baldi.01@gmail.com>",
6
6
  "keywords": [
@@ -13,15 +13,15 @@
13
13
  "repository": "https://github.com/lotrekagency/mapo",
14
14
  "main": "./module.js",
15
15
  "dependencies": {
16
- "@mapomodule/core": "^1.0.0-alpha.1",
16
+ "@mapomodule/core": "^1.0.0-alpha.6",
17
17
  "@mapomodule/routemeta": "^1.0.0-alpha.1",
18
18
  "@mapomodule/store": "^1.0.0-alpha.1",
19
- "@mapomodule/uikit": "^1.0.0-alpha.2",
19
+ "@mapomodule/uikit": "^1.0.0-alpha.6",
20
20
  "@nuxtjs/axios": "^5.13.6",
21
21
  "lodash.mergewith": "^4.6.2"
22
22
  },
23
23
  "publishConfig": {
24
24
  "access": "public"
25
25
  },
26
- "gitHead": "0e0250444e8db547df4a3b3e70364880fde8f36b"
26
+ "gitHead": "c30717d018606a1393f3a1f680276b1817d1d7a8"
27
27
  }