Skip to content

Commit afaa4db

Browse files
authored
Merge pull request #241 from StatelessStudio/merge-v4-3
Merge v4 3
2 parents fd9f05f + f0d999b commit afaa4db

5 files changed

Lines changed: 47 additions & 221 deletions

File tree

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"type": "node",
5454
"request": "launch",
5555
"name": "Launch Program",
56-
"program": "${workspaceFolder}/src/index.ts",
56+
"program": "${workspaceFolder}/script/example.ts",
5757
"preLaunchTask": "npm: compile",
5858
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
5959
},

package-lock.json

Lines changed: 27 additions & 206 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,11 @@
88
"start": "npm run dev",
99
"dev": "ts-node test/examples/basic/server",
1010
"watch": "nodemon .",
11-
"test": "npm run db:drop && npm run test:prod",
11+
"test": "npm run test:prod && npm test:examples",
1212
"test:typescript": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.dev.json",
13-
"test:dev": "npm run lint && npm run test:typescript",
14-
"test:prod": "npm run build:prod:clean && npm run coverage && npm run test:examples",
13+
"test:dev": "npm run lint && npm run db:drop && npm run test:typescript",
14+
"test:prod": "npm run build:prod:clean && npm run db:drop && npm run coverage",
1515
"test:examples": "npm run test:jasmine-basic && npm run test:jasmine-guards && npm run test:jasmine-chat && npm run test:jasmine-terms",
16-
"test:jasmine-api": "npm run db:drop && jasmine --config=test/jasmine.api.json",
1716
"test:jasmine-basic": "npm run db:drop && jasmine --config=test/jasmine.basic.json",
1817
"test:jasmine-guards": "npm run db:drop && jasmine --config=test/jasmine.guards.json",
1918
"test:jasmine-chat": "npm run db:drop && jasmine --config=test/jasmine.chat.json",
@@ -52,7 +51,7 @@
5251
"ts-async-bootstrap": "^2.1.0",
5352
"ts-error-handler": "^1.0.2",
5453
"ts-tiny-log": "^1.0.2",
55-
"typeorm": "0.2.38"
54+
"typeorm": "0.2.45"
5655
},
5756
"devDependencies": {
5857
"@istanbuljs/nyc-config-typescript": "^1.0.2",
@@ -75,6 +74,9 @@
7574
"typedoc": "^0.22.11",
7675
"typescript": "^4.5.4"
7776
},
77+
"peerDependencies": {
78+
"typeorm": "0.2.45"
79+
},
7880
"repository": {
7981
"type": "git",
8082
"url": "git+https://github.com/statelessstudio/pointyapi.git"

0 commit comments

Comments
 (0)