Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
Merge release-v0.1.3 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
johnboxall authored May 9, 2018
2 parents 95ff45b + fb7ed3b commit 678ff57
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.1.3 (May 9, 2018)
- Ensure we are shipping ES5 everywhere.

## v0.1.2 (April 3, 2018)
- Update npm package to ship with three builds: `UMD`, `CommonJS` and `ES2015`

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "commercecloud-ocapi-client",
"version": "0.1.2",
"version": "0.1.3",
"description": "An ES6 JavaScript Client for Salesforce Open Commerce API",
"license": "SEE LICENSE IN LICENSE",
"main": "dist/commercecloud-ocapi-client.cjs.js",
Expand All @@ -20,7 +20,7 @@
"lint:fix": "npm run lint:js -- --fix",
"test": "NODE_ENV=test mocha --require babel-core/register $(find test/api -name '*.spec.js')",
"prebuild": "npm run lint",
"build": "rollup -c",
"build": "NODE_ENV=production rollup -c",
"prepack": "npm run build"
},
"dependencies": {
Expand Down
8 changes: 6 additions & 2 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ export default [{
browser: true,
}),
babel({
exclude: ['node_modules/**'],
externalHelpers: true
exclude: ['node_modules/**']
})
]
},
Expand All @@ -37,4 +36,9 @@ export default [{
format: 'es'
}],
external: ['superagent', 'querystring'],
plugins: [
babel({
exclude: ['node_modules/**']
})
]
}]

0 comments on commit 678ff57

Please sign in to comment.