Skip to content

Commit 6c0d17d

Browse files
committed
Update version and remove unused dependencies.
1 parent 782f796 commit 6c0d17d

File tree

2 files changed

+17
-19
lines changed

2 files changed

+17
-19
lines changed

README.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@ The Nimbella add-on provides the following benefits.
1919
Learn more about the Nimbella add-on for Netlify [on our website](https://nimbella.com/integrations/netlify).
2020

2121
- [Add-On Setup](#add-on-setup)
22-
- [New to Nimbella](#new-to-nimbella)
23-
- [Existing Nimbella User](#existing-nimbella-developer)
24-
- [Minimal Netlify TOML Configuration](#minimal-netlify-toml-configuration)
25-
- [Usage](#usage)
26-
- [Use Nimbella Projects with Netlify Sites](#use-nimbella-projects-with-netlify-sites)
27-
- [Examples](#examples)
28-
- [Support](#support)
29-
- [License](#license)
22+
- [New to Nimbella](#New-to-Nimbella)
23+
- [Existing Nimbella User](#Existing-Nimbella-Developer)
24+
- [Minimal Netlify TOML Configuration](#Minimal-Netlify-TOML-Configuration)
25+
- [Understanding your Nimbella Project](#Understanding-Your-Nimbella-Project)
26+
- [Cleaning your Nimbella Namespace](#Cleaning-your-Nimbella-Namespace)
27+
- [Exporting Environment Variables to Serverless APIs](#Exporting-Environment-Variables-to-Serverless-APIs)
28+
- [Example Projects](#Example-Projects)
29+
- [Support](#Support)
30+
- [License](#License)
3031

3132
## Add-On Setup
3233

@@ -114,11 +115,11 @@ Your Nimbella project may also include a `web` folder which can be deployed to t
114115
web = true
115116
```
116117

117-
## Cleaning your Nimbella Namespace
118+
#### Cleaning your Nimbella Namespace
118119

119120
The Nimbella project configuration (`project.yml`) allows for cleaning your namespace, or deployed API package. See [the documentation](https://docs.nimbella.com/configuration#adding-project-configuration) for more details on sanitizing the namespace between deployments.
120121

121-
## Exporting Environment Variables to Serverless APIs
122+
#### Exporting Environment Variables to Serverless APIs
122123

123124
If your serverless APIs require environment variables, you have to export the variables explicitly in the `plugins.input` section of the `netlify.toml` file. This is to avoid exporting the entire environment to your APIs, and instead selecting exporting only the variables the actions need access to.
124125

package.json

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "netlify-plugin-nimbella",
3-
"version": "1.8.0",
3+
"version": "2.0.0",
44
"main": "src/index.js",
5-
"description": "Nimbella add-on for Netlify to extends Netlify Sites with serverless functions and stateful APIs using Nimbella Cloud.",
5+
"description": "Nimbella add-on for Netlify to extends Netlify Sites with stateful serverless APIs using Nimbella Cloud.",
66
"scripts": {
77
"setup": "yarn install",
8-
"precommit": "xo --no-semicolon && jest --coverage",
8+
"precommit": "xo && jest --coverage",
99
"test": "jest --coverage",
10-
"lint": "xo --no-semicolon",
11-
"lint-fix": "xo --no-semicolon --fix"
10+
"lint": "xo",
11+
"lint-fix": "xo --fix"
1212
},
1313
"repository": {
1414
"type": "git",
@@ -29,15 +29,12 @@
2929
},
3030
"homepage": "https://github.com/nimbella/netlify-plugin-nimbella#readme",
3131
"dependencies": {
32-
"@iarna/toml": "^2.2.5",
33-
"cpx": "^1.5.0",
3432
"make-dir": "^3.1.0",
35-
"netlify-lambda": "satyarohith/netlify-lambda#88eac6a37bfb0920897c86ecda8682944a2bf5be",
36-
"netlify-redirect-parser": "^2.5.0",
3733
"nimbella-cli": "https://apigcp.nimbella.io/downloads/nim/nimbella-cli.tgz"
3834
},
3935
"xo": {
4036
"space": true,
37+
"semicolon": false,
4138
"prettier": true,
4239
"envs": [
4340
"node",

0 commit comments

Comments
 (0)