Skip to content

Commit

Permalink
optimized for midcore
Browse files Browse the repository at this point in the history
  • Loading branch information
pirog committed Dec 7, 2024
1 parent 4401b50 commit 428c72c
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 deletions.
19 changes: 16 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,36 @@
{
"env": {
"node": true,
"mocha": true
"mocha": true,
"es2021": true
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 8,
"requireConfigFile": false
},
"extends": "google",
"extends": [
"eslint:recommended",
"google"
],
"rules": {
"arrow-parens": ["error",
"as-needed"
],
"max-len": ["error", {
"code": 120,
"code": 140,
"ignoreComments": true
}],
"no-empty": ["error", {
"allowEmptyCatch": true
}],
"no-unused-vars": ["error", {
"vars": "all",
"args": "after-used",
"ignoreRestSiblings": false
}],

"require-jsdoc": ["error", {
"require": {
"FunctionDeclaration": true,
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-nginx-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
lando-version:
- 3-edge-slim
- 3-edge
os:
- ubuntu-24.04
node-version:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})

* Optimized for `midcore`

## v1.4.3 - [December 6, 2024](https://github.com/lando/nginx/releases/tag/v1.4.3)

* Updated the version index.md to get Docuverse page to build correctly.
Expand Down
2 changes: 1 addition & 1 deletion builders/nginx.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,6 @@ module.exports = {

// Send it downstream
super(id, options, {services: _.set({}, options.name, nginx)});
};
}
},
};
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
'use strict';

module.exports = lando => {};
module.exports = () => {};
Empty file removed tmpfile
Empty file.

0 comments on commit 428c72c

Please sign in to comment.