Skip to content

Commit 0a8eabe

Browse files
authored
Merge pull request #12 from fabrix-app/v1.6
[feat] pkg updates
2 parents 62d90dd + 92d2737 commit 0a8eabe

File tree

11 files changed

+631
-1691
lines changed

11 files changed

+631
-1691
lines changed

package-lock.json

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

package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fabrix/spool-express",
3-
"version": "1.5.1",
3+
"version": "1.6.0",
44
"description": "Spool Express - Binds the routes compiled in spool-router to a Express 4 Server.",
55
"homepage": "https://fabrix.app",
66
"author": {
@@ -49,57 +49,57 @@
4949
],
5050
"dependencies": {
5151
"body-parser": "^1.18.2",
52-
"compression": "^1.7.2",
52+
"compression": "^1.7.4",
5353
"consolidate": "^0.15.0",
54-
"cookie-parser": "^1.4.3",
55-
"cors": "^2.8.4",
54+
"cookie-parser": "^1.4.4",
55+
"cors": "^2.8.5",
5656
"express-boom": "^2.0.0",
5757
"express-session": "^1.15.6",
58-
"helmet": "^3.13.0",
59-
"joi": "^13.7.0",
58+
"helmet": "^3.16.0",
59+
"joi": "^14.3.1",
6060
"lodash": "^4.17.11",
6161
"method-override": "^3.0.0",
6262
"methods": "^1.1.2"
6363
},
6464
"devDependencies": {
65-
"@fabrix/fabrix": "^1.5.9",
65+
"@fabrix/fabrix": "^1.6.0",
6666
"@fabrix/lint": "^1.0.0-alpha.3",
6767
"@fabrix/spool-i18n": "^1.5.1",
68-
"@fabrix/spool-router": "^1.5.1",
69-
"@fabrix/spool-sequelize": "^1.5.0",
70-
"@fabrix/spool-tapestries": "^1.5.0",
68+
"@fabrix/spool-router": "^1.6.2",
69+
"@fabrix/spool-sequelize": "^1.6.10",
70+
"@fabrix/spool-tapestries": "^1.6.0",
7171
"@types/body-parser": "^1.17.0",
7272
"@types/compression": "0.0.36",
7373
"@types/cookie-parser": "^1.4.1",
7474
"@types/cors": "^2.8.4",
75-
"@types/express": "^4.16.0",
75+
"@types/express": "^4.16.1",
7676
"@types/express-session": "^1.15.10",
7777
"@types/lodash": "^4.14.109",
7878
"@types/method-override": "0.0.31",
7979
"@types/methods": "^1.1.0",
8080
"@types/mkdirp": "^0.5.2",
8181
"@types/node": "~10.3.4",
8282
"boom": "^7.2.0",
83-
"express": "^4.16.3",
83+
"express": "^4.16.4",
8484
"npm": "^5.7.1",
8585
"mocha": "^5",
86-
"nyc": "^12.0.2",
86+
"nyc": "^13.3.0",
8787
"pg": "^6.4.2",
8888
"pre-commit": "^1.2.2",
8989
"pug": "^2.0.1",
9090
"smokesignals": "^3",
9191
"sqlite3": "^4.0.2",
92-
"supertest": "^3.3.0",
92+
"supertest": "^3.4.2",
9393
"tslib": "~1.9.0",
9494
"tslint": "~5.10.0",
9595
"tslint-microsoft-contrib": "~5.0.3",
9696
"tsutils": "~2.27.1",
9797
"typescript": "~2.8.1"
9898
},
9999
"peerDependencies": {
100-
"@fabrix/fabrix": "^1.5.9",
101-
"@fabrix/spool-router": "^1.5.1",
102-
"@fabrix/spool-i18n": "^1.5.1"
100+
"@fabrix/fabrix": "^1.6.0",
101+
"@fabrix/spool-router": "^1.6.0",
102+
"@fabrix/spool-i18n": "^1.6.0"
103103
},
104104
"engines": {
105105
"node": ">= 7.6.0"

test/fixtures/api/controllers/DefaultController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict'
2-
require('@fabrix/fabrix')
2+
const Controller = require('@fabrix/fabrix/dist/common').FabrixController
33
/**
44
* @module DefaultController
55
*

test/fixtures/api/controllers/StandardController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict'
2-
require('@fabrix/fabrix')
2+
const Controller = require('@fabrix/fabrix/dist/common').FabrixController
33

44
/**
55
* @module DefaultController

test/fixtures/api/controllers/ValidationController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict'
2-
require('@fabrix/fabrix')
2+
const Controller = require('@fabrix/fabrix/dist/common').FabrixController
33

44
/**
55
* @module DefaultController

test/fixtures/api/controllers/ViewController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict'
2-
require('@fabrix/fabrix')
2+
const Controller = require('@fabrix/fabrix/dist/common').FabrixController
33

44
module.exports = class ViewController extends Controller{
55
helloWorld (req, res) {

test/fixtures/api/models/Role.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
require('@fabrix/fabrix')
3+
const Model = require('@fabrix/fabrix/dist/common').FabrixModel
44
const SequelizeResolver = require('@fabrix/spool-sequelize').SequelizeResolver
55
/**
66
* Pet

test/fixtures/api/models/User.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
require('@fabrix/fabrix')
3+
const Model = require('@fabrix/fabrix/dist/common').FabrixModel
44
const SequelizeResolver = require('@fabrix/spool-sequelize').SequelizeResolver
55

66
/**

test/fixtures/api/policies/Default.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict'
2-
require('@fabrix/fabrix')
2+
const Policy = require('@fabrix/fabrix/dist/common').FabrixPolicy
33

44
/**
55
* @module Default

test/fixtures/api/policies/Standard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict'
2-
require('@fabrix/fabrix')
2+
const Policy = require('@fabrix/fabrix/dist/common').FabrixPolicy
33

44
const Boom = require('boom')
55
/**

0 commit comments

Comments
 (0)