8000 0.8.3 · js-data/js-data-adapter@748a77c · GitHub
[go: up one dir, main page]

Skip to content

Commit 748a77c

Browse files
committed
0.8.3
1 parent dfefdf2 commit 748a77c

File tree

8 files changed

+45
-26
lines changed

8 files changed

+45
-26
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#
77
# The email address is not required for organizations.
88
#
9+
Greenkeeper <support@greenkeeper.io>
910
Jason Dobry <jason.dobry@gmail.com>
1011
Nick Escallon <nickescallon@gmail.com>
1112
Nick Vahalik <nick@nickvahalik.com>

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
##### 0.8.3 - 07 November 2016
2+
3+
- Upgraded dependencies
4+
15
##### 0.8.2 - 15 August 2016
26

37
###### Bug fixes

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,7 @@
33
# Names are formatted as:
44
# Name [email address]
55
#
6+
Greenkeeper <support@greenkeeper.io>
67
Jason Dobry <jason.dobry@gmail.com>
78
Nick Escallon <nickescallon@gmail.com>
9+
Nick Vahalik <nick@nickvahalik.com>

mocha.start.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
/*global assert:true */
21
'use strict'
32

4-
// prepare environment for js-data-adapter-tests
5-
import 'babel-polyfill'
6-
73
import * as JSData from 'js-data'
84
import JSDataAdapterTests from './test/index'
95
import MockAdapter from './test/mockAdapter'

package.json

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "js-data-adapter",
33
"description": "Base adapter class that all other js-data adapters extend.",
4-
"version": "0.8.2",
4+
"version": "0.8.3",
55
"homepage": "https://github.com/js-data/js-data-adapter",
66
"repository": {
77
"type": "git",
@@ -43,7 +43,9 @@
4343
},
4444
"babel": {
4545
"presets": [
46-
"es2015",
46+
[
47+
"es2015"
48+
],
4749
"stage-0"
4850
],
4951
"plugins": [
@@ -58,8 +60,8 @@
5860
"bundle": "npm run bundle_adapter && npm run bundle_tests",
5961
"watch": "watch \"npm run bundle\" src/",
6062
"build": "npm run lint && npm run bundle",
61-
"mocha": "mocha -t 30000 -R dot mocha.start.js -r babel-core/register -r babel-polyfill",
62-
"cover": "nyc --require babel-core/register --require babel-polyfill --cache mocha mocha.start.js -t 20000 -R dot && nyc report --reporter=html",
63+
"mocha": "mocha -t 2000 -R dot mocha.start.js -r babel-core/register -r babel-polyfill",
64+
"cover": "nyc --require babel-core/register --require babel-polyfill --cache mocha mocha.start.js -t 2000 -R dot && nyc report --reporter=html",
6365
"test": "npm run build && npm run cover",
6466
"release": "npm test && repo-tools updates && repo-tools changelog && repo-tools authors"
6567
},
@@ -68,13 +70,13 @@
6870
},
6971
"dependencies": {
7072
"chai": "^3.5.0",
71-
"mocha": "^3.0.2",
72-
"sinon": "^1.17.5"
73+
"mocha": "^3.1.2",
74+
"sinon": "^1.17.6"
7375
},
7476
"devDependencies": {
7577
"babel-plugin-syntax-async-functions": "6.13.0",
76-
"babel-plugin-transform-regenerator": "6.14.0",
77-
"babel-preset-stage-0": "6.5.0",
78-
"js-data-repo-tools": "0.5.6"
78+
"babel-plugin-transform-regenerator": "6.16.1",
79+
"babel-preset-stage-0": "6.16.0",
80+
"js-data-repo-tools": "0.5.9"
7981
}
8082
}

rollup-tests.config.js

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
var babel = require('rollup-plugin-babel')
1+
import babel from 'rollup-plugin-babel'
22

3-
module.exports = {
3+
export default {
44
moduleName: 'JSDataAdapterTests',
55
moduleId: 'js-data-adapter-tests',
66
external: [
@@ -14,15 +14,21 @@ module.exports = {
1414
plugins: [
1515
babel({
1616
babelrc: false,
17-
presets: [
18-
'es2015-rollup',
19-
'stage-0'
20-
],
17+
exclude: 'node_modules/**',
2118
plugins: [
19+
'babel-plugin-external-helpers',
2220
'syntax-async-functions',
2321
'transform-regenerator'
2422
],
25-
exclude: 'node_modules/**'
23+
presets: [
24+
[
25+
'es2015',
26+
{
27+
modules: false
28+
}
29+
],
30+
'stage-0'
31+
]
2632
})
2733
]
2834
}

rollup.config.js

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
var babel = require('rollup-plugin-babel')
1+
import babel from 'rollup-plugin-babel'
22

3-
module.exports = {
3+
export default {
44
moduleName: 'Adapter',
55
moduleId: 'js-data-adapter',
66
external: [
@@ -12,10 +12,18 @@ module.exports = {
1212
plugins: [
1313
babel({
1414
babelrc: false,
15-
presets: [
16-
'es2015-rollup'
15+
exclude: 'node_modules/**',
16+
plugins: [
17+
'babel-plugin-external-helpers'
1718
],
18-
exclude: 'node_modules/**'
19+
presets: [
20+
[
21+
'es2015',
22+
{
23+
modules: false
24+
}
25+
]
26+
]
1927
})
2028
]
2129
}

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Component, utils} from 'js-data'
1+
import { Component, utils } from 'js-data'
22

33
export const noop = function (...args) {
44
const opts = args[args.length - 1]

0 commit comments

Comments
 (0)
0