Skip to content

Commit

Permalink
0.29.0 - Update to TypeScript 4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
TeamworkGuy2 committed Jun 12, 2021
1 parent 90f58f5 commit 809c456
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 2,696 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ This project does its best to adhere to [Semantic Versioning](http://semver.org/


--------
### [0.28.0](N/A) - 2021-03-16
### [0.29.0](N/A) - 2021-06-12
#### Change
* Update to TypeScript 4.3


--------
### [0.28.0](https://github.com/TeamworkGuy2/lokijs-collections/commit/90f58f598ae74a828517809282b1a1a2d40502eb) - 2021-03-16
#### Change
* Remove `Q` dependency (still used as a devDependency)
* Update dependencies for `Q` dependency removal
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lokijs-collections",
"version": "0.28.0",
"version": "0.29.0",
"description": "TypeScript in-memory data collections based off LokiJS with data models, constraints (like primary keys and non-null fields), and collection change tracking",
"author": "TeamworkGuy2",
"homepage": "https://github.com/TeamworkGuy2/lokijs-collections",
Expand All @@ -10,10 +10,10 @@
"url": "https://github.com/TeamworkGuy2/lokijs-collections.git"
},
"dependencies": {
"@twg2/ts-twg-ast-codegen": "~0.24.4",
"ts-event-handlers-lite": "~0.4.1",
"ts-mortar": "~0.20.0",
"ts-promises": "~0.7.0"
"@twg2/ts-twg-ast-codegen": "~0.25.0",
"ts-event-handlers-lite": "~0.5.0",
"ts-mortar": "~0.21.0",
"ts-promises": "~0.8.0"
},
"devDependencies": {
"@types/browser-pack": "~6.0.4",
Expand All @@ -31,7 +31,7 @@
"module-deps": "^6.2.0",
"q": "~1.5.1",
"ts-bundlify": "*",
"typescript": "~4.0.2"
"typescript": "~4.3.2"
},
"scripts": {
"test": "node node_modules/mocha/bin/_mocha -u tdd --recursive ./test/**/*Test.js",
Expand Down
2 changes: 1 addition & 1 deletion test/CompileManualBrowserBundleTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var BundleBuilder = require("ts-bundlify/bundlers/BundleBuilder");
var TsBrowserify = require("ts-bundlify/bundlers/browser/TsBrowserify");
var asr = chai.assert;
suite("CompileManualBrowserBundle", function CompileManualBrowserBundleTest() {
var doCleanup = false;
var doCleanup = true;
test("bundleLokijsCollections", function bundleLokijsCollectionsTest(done) {
this.timeout(3000);
TsBrowserify.builtins = {
Expand Down
2 changes: 1 addition & 1 deletion test/CompileManualBrowserBundleTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import TsBrowserify = require("ts-bundlify/bundlers/browser/TsBrowserify");
var asr = chai.assert;

suite("CompileManualBrowserBundle", function CompileManualBrowserBundleTest() {
var doCleanup = false;
var doCleanup = true;


test("bundleLokijsCollections", function bundleLokijsCollectionsTest(done) {
Expand Down
Loading

0 comments on commit 809c456

Please sign in to comment.