@nuxtjs/prismic 3.0.0-rc.0 → 3.0.0-rc.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/README.md +9 -9
- package/dist/module.json +2 -2
- package/dist/module.mjs +2 -2
- package/package.json +2 -2
- package/src/module.ts +1 -1
package/README.md
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
Replace all on all files (README.md, CONTRIBUTING.md, bug_report.md, package.json):
|
|
4
4
|
- @nuxtjs/prismic
|
|
5
5
|
- Easily connect your Nuxt 3 application to your content hosted on Prismic
|
|
6
|
-
- nuxt-
|
|
7
|
-
- prismic
|
|
6
|
+
- nuxt-modules/prismic
|
|
7
|
+
- prismic
|
|
8
8
|
|
|
9
9
|
-->
|
|
10
10
|
|
|
@@ -76,9 +76,9 @@ Whether you're helping us fix bugs, improve the docs, or spread the word, we'd l
|
|
|
76
76
|
<!-- TODO: Replace link with a more useful one if available -->
|
|
77
77
|
|
|
78
78
|
[forum-question]: https://community.prismic.io
|
|
79
|
-
[repo-bug-report]: https://github.com/nuxt-
|
|
80
|
-
[repo-feature-request]: https://github.com/nuxt-
|
|
81
|
-
[repo-pull-requests]: https://github.com/nuxt-
|
|
79
|
+
[repo-bug-report]: https://github.com/nuxt-modules/prismic/issues/new?assignees=&labels=bug&template=bug_report.md&title=
|
|
80
|
+
[repo-feature-request]: https://github.com/nuxt-modules/prismic/issues/new?assignees=&labels=enhancement&template=feature_request.md&title=
|
|
81
|
+
[repo-pull-requests]: https://github.com/nuxt-modules/prismic/pulls
|
|
82
82
|
|
|
83
83
|
<!-- Badges -->
|
|
84
84
|
|
|
@@ -86,10 +86,10 @@ Whether you're helping us fix bugs, improve the docs, or spread the word, we'd l
|
|
|
86
86
|
[npm-version-href]: https://npmjs.com/package/@nuxtjs/prismic
|
|
87
87
|
[npm-downloads-src]: https://img.shields.io/npm/dm/@nuxtjs/prismic.svg
|
|
88
88
|
[npm-downloads-href]: https://npmjs.com/package/@nuxtjs/prismic
|
|
89
|
-
[github-actions-ci-src]: https://github.com/nuxt-
|
|
90
|
-
[github-actions-ci-href]: https://github.com/nuxt-
|
|
91
|
-
[codecov-src]: https://img.shields.io/codecov/c/github/nuxt-
|
|
92
|
-
[codecov-href]: https://codecov.io/gh/nuxt-
|
|
89
|
+
[github-actions-ci-src]: https://github.com/nuxt-modules/prismic/workflows/ci/badge.svg
|
|
90
|
+
[github-actions-ci-href]: https://github.com/nuxt-modules/prismic/actions?query=workflow%3Aci
|
|
91
|
+
[codecov-src]: https://img.shields.io/codecov/c/github/nuxt-modules/prismic.svg
|
|
92
|
+
[codecov-href]: https://codecov.io/gh/nuxt-modules/prismic
|
|
93
93
|
[conventional-commits-src]: https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg
|
|
94
94
|
[conventional-commits-href]: https://conventionalcommits.org
|
|
95
95
|
[license-src]: https://img.shields.io/npm/l/@nuxtjs/prismic.svg
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -7,7 +7,7 @@ import consola from 'consola';
|
|
|
7
7
|
import { existsSync } from 'node:fs';
|
|
8
8
|
|
|
9
9
|
const name = "@nuxtjs/prismic";
|
|
10
|
-
const version = "3.0.0-rc.
|
|
10
|
+
const version = "3.0.0-rc.1";
|
|
11
11
|
|
|
12
12
|
const logger = consola.withScope("nuxt:prismic");
|
|
13
13
|
|
|
@@ -26,7 +26,7 @@ const module = defineNuxtModule({
|
|
|
26
26
|
name: name,
|
|
27
27
|
version: version,
|
|
28
28
|
configKey: "prismic",
|
|
29
|
-
compatibility: { nuxt: "^3.0.0" }
|
|
29
|
+
compatibility: { nuxt: "^3.0.0-rc.6" }
|
|
30
30
|
},
|
|
31
31
|
defaults: (nuxt) => ({
|
|
32
32
|
endpoint: "",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxtjs/prismic",
|
|
3
|
-
"version": "3.0.0-rc.
|
|
3
|
+
"version": "3.0.0-rc.1",
|
|
4
4
|
"description": "Easily connect your Nuxt 3 application to your content hosted on Prismic",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nuxt",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
],
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
|
-
"url": "ssh://git@github.com/nuxt-
|
|
15
|
+
"url": "ssh://git@github.com/nuxt-modules/prismic.git"
|
|
16
16
|
},
|
|
17
17
|
"license": "MIT",
|
|
18
18
|
"author": "Nuxt.js Community",
|
package/src/module.ts
CHANGED