Skip to content

Commit 5a7112f

Browse files
committed
docs: update readme
1 parent 83b958c commit 5a7112f

File tree

2 files changed

+28
-62
lines changed

2 files changed

+28
-62
lines changed

README.md

+27-61
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,35 @@
11
# intervention-request-provider
2-
[InterventionRequest](https://github.com/ambroisemaupate/intervention-request) provider for [@nuxt/image-edge](https://github.com/nuxt/image)
2+
[InterventionRequest](https://github.com/ambroisemaupate/intervention-request) provider for [@nuxt/image](https://github.com/nuxt/image)
33

4-
This library is built for **Nuxt 3**.
4+
This is a **Nuxt 3** module.
55

66
## Installation
77

88
```sh
9-
yarn add @rezo-zero/intervention-request-provider@next
10-
```
11-
or
12-
```sh
13-
npm install @rezo-zero/intervention-request-provider@next
9+
npm install --save-dev @rezo-zero/intervention-request-provider @nuxt/image
1410
```
1511

16-
- Register Nuxt module `@rezo-zero/intervention-request-provider`
17-
- Add the provider to `@nuxt/image-edge` module as described [here](https://image.nuxtjs.org/advanced/custom-provider).
12+
- Register Nuxt module `@rezo-zero/intervention-request-provider` and `@nuxt/image`:
1813

1914
```ts
20-
// nuxt.config.ts
21-
modules: [
22-
'@nuxt/image-edge',
23-
'@rezo-zero/intervention-request-provider'
24-
],
25-
runtimeConfig: {
26-
public: {
27-
interventionRequest: {
28-
baseUrl: process.env.NUXT_PUBLIC_INTERVENTION_REQUEST_BASE_URL ?? 'http://localhost:8080/assets',
29-
noProcessBaseUrl: process.env.NUXT_PUBLIC_INTERVENTION_REQUEST_NO_PROCESS_BASE_URL ?? 'http://localhost:8080/images',
30-
imagesPath: 'images'
31-
}
32-
}
33-
}
34-
image: {
35-
provider: 'interventionRequest',
36-
providers: {
37-
interventionRequest: {
38-
name: 'interventionRequest',
39-
provider: '~/node_modules/@rezo-zero/intervention-request-provider/dist/runtime/index',
40-
options: {
41-
imagesPath: 'images'
42-
}
43-
}
44-
}
45-
}
15+
// nuxt.config.ts
16+
modules: [
17+
'@rezo-zero/intervention-request-provider',
18+
'@nuxt/image'
19+
]
4620
```
4721

4822
## Setup
4923

5024
### baseUrl
5125

5226
- As a runtime config variable (preferred)
53-
54-
```js
55-
// nuxt.config.ts
56-
runtimeConfig: {
57-
public: {
58-
interventionRequest: {
59-
baseUrl: process.env.NUXT_PUBLIC_INTERVENTION_REQUEST_BASE_URL ?? 'http://localhost'
60-
}
61-
}
62-
}
27+
```dotenv
28+
#.env
29+
NUXT_PUBLIC_INTERVENTION_REQUEST_BASE_URL=https://example.com/assets
6330
```
6431

65-
- As a @nuxt/image provider option
32+
- As a `@nuxt/image` provider option
6633

6734
```js
6835
// nuxt.config.ts
@@ -80,27 +47,20 @@ npm install @rezo-zero/intervention-request-provider@next
8047
### noProcessBaseUrl
8148

8249
- As a runtime config variable (preferred)
83-
84-
```js
85-
// nuxt.config.ts
86-
runtimeConfig: {
87-
public: {
88-
interventionRequest: {
89-
noProcessBaseUrl: process.env.NUXT_PUBLIC_INTERVENTION_REQUEST_NO_PROCESS_BASE_URL ?? 'http://localhost/images'
90-
}
91-
}
92-
}
50+
```dotenv
51+
#.env
52+
NUXT_PUBLIC_INTERVENTION_REQUEST_NO_PROCESS_BASE_URL=https://example.com/assets
9353
```
9454

95-
- As a @nuxt/image provider option
55+
- As a `@nuxt/image` provider option
9656

9757
```js
9858
// nuxt.config.ts
9959
image: {
10060
providers: {
10161
interventionRequest: {
10262
options: {
103-
noProcessBaseUrl: 'http://localhost/images'
63+
noProcessBaseUrl: 'https://example.com/images'
10464
}
10565
}
10666
}
@@ -109,6 +69,12 @@ npm install @rezo-zero/intervention-request-provider@next
10969

11070
### imagesPath (see [InterventionRequest configuration](https://github.com/ambroisemaupate/intervention-request#configuration))
11171

72+
- As a runtime config variable (preferred)
73+
```dotenv
74+
#.env
75+
NUXT_PUBLIC_INTERVENTION_REQUEST_IMAGES_PATH=images
76+
```
77+
11278
```js
11379
// nuxt.config.ts
11480
image: {
@@ -130,12 +96,12 @@ See [InterventionRequest operations](https://github.com/ambroisemaupate/interven
13096
## Contributing
13197

13298
1. Clone this repository
133-
2. Install dependencies using `yarn install`
99+
2. Install dependencies using `npm install`
134100
3. Start Docker server ([InterventionRequest](https://github.com/ambroisemaupate/intervention-request#ready-to-go-docker-image)) using `docker-compose up -d`
135-
4. Start development server using `yarn dev`
101+
4. Start development server using `npm run dev`
136102

137103
## Publishing
138104

139105
```shell
140-
yarn prepack && npm publish --tag next
106+
npm run release
141107
```

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
2323
"dev:pack": "npm run prepack && npm pack --dry-run",
2424
"lint": "eslint .",
25-
"release": "npm run prepack && npm publish --tag next",
25+
"release": "npm run lint && npm run prepack && npm publish --follow-tags",
2626
"clean": "rm -rf node_modules && rm -rf .nuxt && rm -rf dist && rm -rf playground/node_modules && rm -rf playground/.nuxt && rm -rf playground/.output"
2727
},
2828
"engines": {

0 commit comments

Comments
 (0)