Skip to content

Commit

Permalink
Feed the linter.
Browse files Browse the repository at this point in the history
  • Loading branch information
reynoldsalec committed Nov 17, 2023
1 parent 7549388 commit 91ab88c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions builders/varnish-nginx.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
'use strict';

const _ = require('lodash');
const fs = require('fs');
const path = require('path');
const LandoNginx = require('./../../node_modules/@lando/nginx/builders/nginx.js');
const landoNginx = require('./../../node_modules/@lando/nginx/builders/nginx.js');

// Builder
module.exports = {
name: 'varnish-nginx',
parent: 'nginx',
builder: (parent, config) => class VarnishNginx extends LandoNginx(parent, config) {
builder: (parent, config) => class VarnishNginx extends landoNginx(parent, config) {
constructor(id, options = {}) {
super(id, options, {services: _.set({}, options.name)});
};
Expand Down

0 comments on commit 91ab88c

Please sign in to comment.