We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f32499d + 7532757 commit e6628a4Copy full SHA for e6628a4
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "jsorm",
3
- "version": "0.2.4",
+ "version": "0.2.5",
4
"description": "Javascript ORM",
5
"main": "_bundles/jsorm.js",
6
"module": "lib-esm/index.js",
@@ -41,6 +41,7 @@
41
},
42
"dependencies": {
43
"es6-promise": "^4.0.5",
44
- "lodash-es": "^4.17.4"
+ "lodash-es": "^4.17.4",
45
+ "object-assign-shim": "1.0.0"
46
}
47
src/main.ts
@@ -1,5 +1,6 @@
/// <reference path="../types/index.d.ts" />
+import 'object-assign-shim'
import * as es6Promise from 'es6-promise';
es6Promise.polyfill();
0 commit comments