Skip to content
This repository has been archived by the owner on Sep 23, 2021. It is now read-only.

Commit

Permalink
Update dependencies to enable Greenkeeper
Browse files Browse the repository at this point in the history
* chore: add Greenkeeper config file
* chore(package): update dependencies
* docs(readme): add Greenkeeper badge
* update formatting for new eslint version
  • Loading branch information
greenkeeper[bot] authored and tripodsan committed Jul 11, 2018
1 parent b6e8a46 commit 6bd49a5
Show file tree
Hide file tree
Showing 8 changed files with 295 additions and 158 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ his is an early POC to see how local development could work w/o running a runtim

Status
------
[![codecov](https://codecov.io/gh/adobe/petridish/branch/master/graph/badge.svg)](https://codecov.io/gh/adobe/petridish)
[![codecov](https://codecov.io/gh/adobe/petridish/branch/master/graph/badge.svg)](https://codecov.io/gh/adobe/petridish) [![Greenkeeper badge](https://badges.greenkeeper.io/adobe/petridish.svg)](https://greenkeeper.io/)

Setup
-----------
Expand Down
10 changes: 10 additions & 0 deletions greenkeeper.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"groups": {
"default": {
"packages": [
"examples/soupdemo/package.json",
"package.json"
]
}
}
}
397 changes: 245 additions & 152 deletions package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
"prepare": "npm run snyk-protect"
},
"dependencies": {
"@adobe/git-server": "0.0.1-SNAPSHOT.6",
"@adobe/git-server": "0.0.1-SNAPSHOT.10",
"colors": "^1.3.0",
"express": "^4.16.3",
"fs-extra": "^5.0.0",
"fs-extra": "^6.0.1",
"git-url-parse": "^9.0.1",
"js-yaml": "^3.12.0",
"lodash": "^4.17.5",
Expand All @@ -28,8 +28,8 @@
},
"devDependencies": {
"codecov": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint": "^5.0.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-header": "^1.2.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
Expand Down
3 changes: 2 additions & 1 deletion src/HelixProject.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ const util = require('util');
const path = require('path');
const yaml = require('js-yaml');
const _ = require('lodash');
const GitUrl = require('./GitUrl.js');
const gitServer = require('@adobe/git-server/lib/server.js');
const GitUrl = require('./GitUrl.js');
const HelixServer = require('./HelixServer.js');
const logger = require('./logger.js');

Expand Down Expand Up @@ -149,6 +149,7 @@ class HelixProject {
this._cfg = yaml.safeLoad(await readFile(cfgPath, 'utf8'));
}
}

async checkPaths() {
const idxPath = path.resolve(this._cwd, INDEX_MD);
if (await isFile(idxPath)) {
Expand Down
11 changes: 11 additions & 0 deletions test/specs/builddir/html.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*
* Copyright 2018 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
11 changes: 11 additions & 0 deletions test/specs/builddir/print_html.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*
* Copyright 2018 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
11 changes: 11 additions & 0 deletions test/specs/builddir/txt.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*
* Copyright 2018 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/

0 comments on commit 6bd49a5

Please sign in to comment.