srcdev-nuxt-components 0.0.5 → 0.0.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/README.md +6 -0
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -10,6 +10,12 @@ Althought this repo is public and feel free to do what you wish with it, this ha
|
|
|
10
10
|
npm install --save nuxt-compnents
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
+
## Additional reuired packages
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install --save @oddbird/css-anchor-positioning
|
|
17
|
+
```
|
|
18
|
+
|
|
13
19
|
Then add the dependency to their `extends` in `nuxt.config`:
|
|
14
20
|
|
|
15
21
|
```ts
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "srcdev-nuxt-components",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.6",
|
|
5
5
|
"main": "nuxt.config.ts",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"clean": "rm -rf .nuxt && rm -rf .output && rm -rf .playground/.nuxt && rm -rf .playground/.output",
|
|
@@ -24,12 +24,14 @@
|
|
|
24
24
|
],
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@nuxt/eslint-config": "0.7.1",
|
|
27
|
-
"@oddbird/css-anchor-positioning": "0.4.0",
|
|
28
27
|
"eslint": "9.15.0",
|
|
29
28
|
"nuxt": "3.14.1592",
|
|
30
29
|
"release-it": "17.10.0",
|
|
31
30
|
"typescript": "5.6.3"
|
|
32
31
|
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@oddbird/css-anchor-positioning": "0.4.0"
|
|
34
|
+
},
|
|
33
35
|
"release-it": {
|
|
34
36
|
"$schema": "https://unpkg.com/release-it/schema/release-it.json",
|
|
35
37
|
"git": {
|