mapomodule 1.0.0-alpha.15 → 1.0.0-alpha.16
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 +16 -0
- package/defaults.js +1 -2
- package/module.js +5 -4
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.0.0-alpha.16](https://github.com/lotrekagency/mapo/compare/v1.0.0-alpha.15...v1.0.0-alpha.16) (2022-04-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Added mapo integrations module! 🎉 ([76d2c80](https://github.com/lotrekagency/mapo/commit/76d2c805245b4cf49a33696339da52e4c17f4053))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### BREAKING CHANGES
|
|
15
|
+
|
|
16
|
+
* This change removes all the camomilla cms references moving the compatibility layer in a detached package [mapo-integrations-camomilla](https://github.com/lotrekagency/mapo-integrations-camomilla). The guidelines to make mapo work with camomilla will be provided in the package readme.
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [1.0.0-alpha.15](https://github.com/lotrekagency/mapo/compare/v1.0.0-alpha.14...v1.0.0-alpha.15) (2022-03-11)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package mapomodule
|
package/defaults.js
CHANGED
package/module.js
CHANGED
|
@@ -21,11 +21,12 @@ export default async function MapoModule(moduleOptions) {
|
|
|
21
21
|
this.options = _mergeWith(this.options, mapoDefaults, customMerger)
|
|
22
22
|
|
|
23
23
|
this.requireModule(['@nuxtjs/axios', (this.options && this.options.axios) || userModuleOptions.axios || mapoDefaults.axios || {}])
|
|
24
|
-
this.requireModule(['@mapomodule/store'
|
|
25
|
-
this.requireModule(['@mapomodule/core'
|
|
24
|
+
this.requireModule(['@mapomodule/store', userModuleOptions.store])
|
|
25
|
+
this.requireModule(['@mapomodule/core', userModuleOptions])
|
|
26
|
+
this.requireModule(['@mapomodule/integrations', userModuleOptions.integrations])
|
|
26
27
|
/* Await prevents to load routemeta before mapo pages. Also needed to correclty load mapo components */
|
|
27
|
-
await this.requireModule(['@mapomodule/uikit'
|
|
28
|
-
this.requireModule(['@mapomodule/routemeta'
|
|
28
|
+
await this.requireModule(['@mapomodule/uikit', userModuleOptions.ui])
|
|
29
|
+
this.requireModule(['@mapomodule/routemeta', userModuleOptions.routemeta])
|
|
29
30
|
|
|
30
31
|
}
|
|
31
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mapomodule",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.16",
|
|
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,16 @@
|
|
|
13
13
|
"repository": "https://github.com/lotrekagency/mapo",
|
|
14
14
|
"main": "./module.js",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@mapomodule/core": "^1.0.0-alpha.
|
|
16
|
+
"@mapomodule/core": "^1.0.0-alpha.16",
|
|
17
|
+
"@mapomodule/integrations": "^1.0.0-alpha.16",
|
|
17
18
|
"@mapomodule/routemeta": "^1.0.0-alpha.8",
|
|
18
|
-
"@mapomodule/store": "^1.0.0-alpha.
|
|
19
|
-
"@mapomodule/uikit": "^1.0.0-alpha.
|
|
19
|
+
"@mapomodule/store": "^1.0.0-alpha.16",
|
|
20
|
+
"@mapomodule/uikit": "^1.0.0-alpha.16",
|
|
20
21
|
"@nuxtjs/axios": "^5.13.6",
|
|
21
22
|
"lodash.mergewith": "^4.6.2"
|
|
22
23
|
},
|
|
23
24
|
"publishConfig": {
|
|
24
25
|
"access": "public"
|
|
25
26
|
},
|
|
26
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "2ef4275464cd8eb28cbbc61c980355b1379186b5"
|
|
27
28
|
}
|