Skip to content

Commit ba771ff

Browse files
authored
Merge pull request #3 from Urigo/master
Update dependencies and fix config
2 parents a8f1e9f + 012e8cf commit ba771ff

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

ormconfig.json

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
[
22
{
33
"name": "default",
4-
"driver": {
5-
"type": "mysql",
6-
"host": "localhost",
7-
"port": 3306,
8-
"username": "test",
9-
"password": "test",
10-
"database": "test"
11-
},
4+
"type": "mysql",
5+
"host": "localhost",
6+
"port": 3306,
7+
"username": "test",
8+
"password": "test",
9+
"database": "test",
1210
"autoSchemaSync": true,
1311
"entities": [
1412
"src/entity/*.js"

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
"typeorm-example"
2424
],
2525
"devDependencies": {
26-
"typescript": "^2.1.5"
26+
"typescript": "^2.4.2"
2727
},
2828
"dependencies": {
29-
"@types/node": "^7.0.4",
30-
"mysql": "^2.12.0",
29+
"@types/node": "^8.0.19",
30+
"mysql": "^2.14.1",
3131
"reflect-metadata": "^0.1.9",
32-
"typeorm": "0.0.8"
32+
"typeorm": "0.1.0-alpha.33"
3333
},
3434
"scripts": {
3535
"start": "tsc && node src/index.js"

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.0.2",
2+
"version": "2.4.2",
33
"compilerOptions": {
44
"lib": ["es5", "es6"],
55
"target": "es6",

0 commit comments

Comments
 (0)