mapomodule 1.0.0-alpha.18 → 1.0.0-alpha.19

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
@@ -3,6 +3,14 @@
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.19](https://github.com/lotrekagency/mapo/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2022-04-06)
7
+
8
+ **Note:** Version bump only for package mapomodule
9
+
10
+
11
+
12
+
13
+
6
14
  # [1.0.0-alpha.18](https://github.com/lotrekagency/mapo/compare/v1.0.0-alpha.17...v1.0.0-alpha.18) (2022-04-04)
7
15
 
8
16
  **Note:** Version bump only for package mapomodule
package/README.md CHANGED
@@ -5,10 +5,10 @@ Add `mapomodule` dependency to your project
5
5
  ```sh
6
6
  yarn add --dev mapomodule # or npm install --save-dev mapomodule
7
7
  ```
8
- Add mapomodule to the buildModules section of nuxt.config.js
8
+ Add mapomodule to the modules section of nuxt.config.js
9
9
  ```js
10
10
  {
11
- buildModules: [
11
+ modules: [
12
12
  // Simple usage
13
13
  'mapomodule',
14
14
 
@@ -22,7 +22,7 @@ Add mapomodule to the buildModules section of nuxt.config.js
22
22
 
23
23
  ```js
24
24
  {
25
- buildModules: [
25
+ modules: [
26
26
  'mapomodule'
27
27
  ],
28
28
  mapo: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mapomodule",
3
- "version": "1.0.0-alpha.18",
3
+ "version": "1.0.0-alpha.19",
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,16 +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.18",
16
+ "@mapomodule/core": "^1.0.0-alpha.19",
17
17
  "@mapomodule/integrations": "^1.0.0-alpha.16",
18
18
  "@mapomodule/routemeta": "^1.0.0-alpha.8",
19
- "@mapomodule/store": "^1.0.0-alpha.17",
20
- "@mapomodule/uikit": "^1.0.0-alpha.18",
19
+ "@mapomodule/store": "^1.0.0-alpha.19",
20
+ "@mapomodule/uikit": "^1.0.0-alpha.19",
21
21
  "@nuxtjs/axios": "^5.13.6",
22
22
  "lodash.mergewith": "^4.6.2"
23
23
  },
24
24
  "publishConfig": {
25
25
  "access": "public"
26
26
  },
27
- "gitHead": "1b05e625339b6ee6ed0e238739cc31fbd84f3397"
27
+ "gitHead": "3bc598b7ecb64c67a164b438847eb237f78efc75"
28
28
  }