Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update namespaced packages #4

Merged
merged 2 commits into from Apr 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/commands/curl.js
Expand Up @@ -2,7 +2,7 @@

const Util = require('util');
const Querystring = require('querystring');
const Bossy = require('bossy');
const Bossy = require('@hapi/bossy');
const CliTable = require('cli-table');
const WordWrap = require('word-wrap');
const Helpers = require('../helpers');
Expand Down
2 changes: 1 addition & 1 deletion lib/commands/routes.js
@@ -1,6 +1,6 @@
'use strict';

const Bossy = require('bossy');
const Bossy = require('@hapi/bossy');
const CliTable = require('cli-table');
const Helpers = require('../helpers');

Expand Down
12 changes: 6 additions & 6 deletions package.json
Expand Up @@ -10,7 +10,7 @@
"test": "test"
},
"scripts": {
"test": "lab -a code -t 100 -L",
"test": "lab -a @hapi/code -t 100 -L",
"coveralls": "lab -r lcov | coveralls"
},
"repository": {
Expand All @@ -37,16 +37,16 @@
"word-wrap": "1.x.x"
},
"peerDependencies": {
"hapi": ">=17 <19"
"@hapi/hapi": ">=17 <19"
},
"devDependencies": {
"code": "5.x.x",
"@hapi/code": "5.x.x",
"@hapi/hapi": "18.x.x",
"@hapi/joi": "14.x.x",
"@hapi/lab": "18.x.x",
"coveralls": "3.x.x",
"hapi": "18.x.x",
"hpal": "1.x.x",
"joi": "14.x.x",
"knex": "0.16.x",
"lab": "18.x.x",
"objection": "1.x.x",
"schmervice": "1.x.x",
"schwifty": "4.x.x",
Expand Down
4 changes: 2 additions & 2 deletions test/closet/curl/server.js
@@ -1,7 +1,7 @@
'use strict';

const Hapi = require('hapi');
const Joi = require('joi');
const Hapi = require('@hapi/hapi');
const Joi = require('@hapi/joi');
const HpalDebug = require('../../..');

exports.deployment = async () => {
Expand Down
2 changes: 1 addition & 1 deletion test/closet/repl/main/server.js
@@ -1,6 +1,6 @@
'use strict';

const Hapi = require('hapi');
const Hapi = require('@hapi/hapi');
const HpalDebug = require('../../../..');

exports.deployment = async () => {
Expand Down
2 changes: 1 addition & 1 deletion test/closet/repl/pal-plugins/server.js
@@ -1,6 +1,6 @@
'use strict';

const Hapi = require('hapi');
const Hapi = require('@hapi/hapi');
const Schwifty = require('schwifty');
const Schmervice = require('schmervice');
const HpalDebug = require('../../../..');
Expand Down
2 changes: 1 addition & 1 deletion test/closet/routes/cors-ignore/server.js
@@ -1,6 +1,6 @@
'use strict';

const Hapi = require('hapi');
const Hapi = require('@hapi/hapi');
const HpalDebug = require('../../../..');

exports.deployment = async () => {
Expand Down
2 changes: 1 addition & 1 deletion test/closet/routes/main/server.js
@@ -1,6 +1,6 @@
'use strict';

const Hapi = require('hapi');
const Hapi = require('@hapi/hapi');
const Toys = require('toys');
const HpalDebug = require('../../../..');

Expand Down
2 changes: 1 addition & 1 deletion test/closet/routes/plugin-groups/server.js
@@ -1,6 +1,6 @@
'use strict';

const Hapi = require('hapi');
const Hapi = require('@hapi/hapi');
const HpalDebug = require('../../../..');

exports.deployment = async () => {
Expand Down
4 changes: 2 additions & 2 deletions test/index.js
Expand Up @@ -7,8 +7,8 @@ const Os = require('os');
const Path = require('path');
const { REPLServer } = require('repl');
const Util = require('util');
const Lab = require('lab');
const Code = require('code');
const Lab = require('@hapi/lab');
const Code = require('@hapi/code');
const Uuid = require('uuid');
const StripAnsi = require('strip-ansi');
const RunUtil = require('./run-util');
Expand Down