Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
falsandtru committed Oct 11, 2020
1 parent 33d88fe commit ef416a2
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ gulp.task('install', done => {
gulp.task('update', done => {
shell('bundle update');
shell('ncu -ux del');
shell('ncu -ut typescript');
shell('ncu -ut greatest typescript');
shell('npm i --no-shrinkwrap');
done();
});
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,36 +34,36 @@
],
"dependencies": {},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/mocha": "^8.0.3",
"@types/power-assert": "1.5.3",
"browserify": "^16.5.1",
"concurrently": "^5.2.0",
"browserify": "^17.0.0",
"concurrently": "^5.3.0",
"del": "4.1.0",
"gulp": "^4.0.2",
"gulp-derequire": "^3.0.0",
"gulp-footer": "^2.0.2",
"gulp-header": "^2.0.9",
"gulp-load-plugins": "^2.0.3",
"gulp-load-plugins": "^2.0.5",
"gulp-minify": "^3.1.0",
"gulp-mocha": "^7.0.2",
"gulp-rename": "^2.0.0",
"gulp-unassert": "^1.1.0",
"json": "^9.0.6",
"karma": "5.0.4",
"gulp-unassert": "^2.0.0",
"json": "^10.0.0",
"karma": "5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-instrumenter": "^1.0.2",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-coverage-istanbul-instrumenter": "^1.0.3",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-coveralls": "^2.1.0",
"karma-espower-preprocessor": "^1.2.0",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.1",
"mocha": "^7.1.2",
"npm-check-updates": "^4.1.2",
"mocha": "^8.1.3",
"npm-check-updates": "^9.0.4",
"power-assert": "^1.6.1",
"semver": "^7.3.2",
"spica": "0.0.374",
"tsify": "^4.0.1",
"typescript": "4.0.0-dev.20200430",
"spica": "0.0.381",
"tsify": "^5.0.2",
"typescript": "4.1.0-dev.20201011",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
Expand Down
18 changes: 9 additions & 9 deletions src/layer/data/es/store.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -358,47 +358,47 @@ describe('Unit: layers/data/es/store', function () {
.then(() =>
new Promise(resolve => {
es.add(new UnstoredEventRecord('a', new Value(1)));
es.events.save.once(['a', 'value', 'put'], () => resolve());
es.events.save.once(['a', 'value', 'put'], () => resolve(undefined));
}))
.then(() =>
new Promise(resolve => {
es.add(new UnstoredEventRecord('a', new Value(2)));
es.events.save.once(['a', 'value', 'put'], () => resolve());
es.events.save.once(['a', 'value', 'put'], () => resolve(undefined));
}))
.then(() =>
new Promise(resolve => {
es.add(new UnstoredEventRecord('a', new Value(3)));
es.events.save.once(['a', 'value', 'put'], () => resolve());
es.events.save.once(['a', 'value', 'put'], () => resolve(undefined));
}))
.then(() =>
new Promise(resolve => {
es.add(new UnstoredEventRecord('a', new Value(4)));
es.events.save.once(['a', 'value', 'put'], () => resolve());
es.events.save.once(['a', 'value', 'put'], () => resolve(undefined));
}))
.then(() =>
new Promise(resolve => {
es.add(new UnstoredEventRecord('a', new Value(5)));
es.events.save.once(['a', 'value', 'put'], () => resolve());
es.events.save.once(['a', 'value', 'put'], () => resolve(undefined));
}))
.then(() =>
new Promise(resolve => {
es.add(new UnstoredEventRecord('a', new Value(6)));
es.events.save.once(['a', 'value', 'put'], () => resolve());
es.events.save.once(['a', 'value', 'put'], () => resolve(undefined));
}))
.then(() =>
new Promise(resolve => {
es.add(new UnstoredEventRecord('a', new Value(7)));
es.events.save.once(['a', 'value', 'put'], () => resolve());
es.events.save.once(['a', 'value', 'put'], () => resolve(undefined));
}))
.then(() =>
new Promise(resolve => {
es.add(new UnstoredEventRecord('a', new Value(8)));
es.events.save.once(['a', 'value', 'put'], () => resolve());
es.events.save.once(['a', 'value', 'put'], () => resolve(undefined));
}))
.then(() =>
new Promise(resolve => {
es.add(new UnstoredEventRecord('a', new Value(9)));
es.events.save.once(['a', 'value', 'put'], () => resolve());
es.events.save.once(['a', 'value', 'put'], () => resolve(undefined));
es.events.save.once(['a', '', 'snapshot'], ev => {
assert(ev.id === 10);
assert(ev.key === 'a');
Expand Down

0 comments on commit ef416a2

Please sign in to comment.