Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Header support #47

Merged
merged 6 commits into from
Jul 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"plugins": ["jest"],
"extends": ["standard", "plugin:jest/recommended"]
"extends": "@adobe/eslint-config-aio-lib-config"
}
328 changes: 209 additions & 119 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/readme_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ governing permissions and limitations under the License.
[![Version](https://img.shields.io/npm/v/@adobe/aio-lib-target.svg)](https://npmjs.org/package/@adobe/aio-lib-target)
[![Downloads/week](https://img.shields.io/npm/dw/@adobe/aio-lib-target.svg)](https://npmjs.org/package/@adobe/aio-lib-target)
[![Build Status](https://travis-ci.com/adobe/aio-lib-target.svg?branch=master)](https://travis-ci.com/adobe/aio-lib-target)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Greenkeeper badge](https://badges.greenkeeper.io/adobe/aio-lib-target.svg)](https://greenkeeper.io/)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Codecov Coverage](https://img.shields.io/codecov/c/github/adobe/aio-lib-target/master.svg?style=flat-square)](https://codecov.io/gh/adobe/aio-lib-target/)

# I/O Adobe Target SDK
Expand Down
1 change: 1 addition & 0 deletions e2e/e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const sdk = require('../src/index')
const path = require('path')

// load .env values in the e2e folder, if any
/* eslint-disable-next-line node/no-unpublished-require */
require('dotenv').config({ path: path.join(__dirname, '.env') })

var sdkClient = {}
Expand Down
16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,18 @@
"@adobe/aio-lib-core-logging": "1.1.0"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^1.2.0",
"codecov": "^3.6.1",
"dotenv": "^8.1.0",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-node": "^11.0.0",
"eslint": "^6.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-jsdoc": "^21.0.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"fetch-mock": "^9.0.0",
"eslint-plugin-standard": "^4.0.1",
"fetch-mock": "^9.10.3",
"jest": "^24.1.0",
"jest-cli": "^24.8.0",
"jest-junit": "^10.0.0",
Expand Down
Loading