Skip to content
This repository has been archived by the owner on Mar 3, 2020. It is now read-only.

Commit

Permalink
chore(package): use adonis packages from @adonisjs org
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Jun 22, 2017
1 parent 20a2322 commit 03e5bf6
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 8 deletions.
44 changes: 43 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"author": "adonisjs",
"license": "MIT",
"devDependencies": {
"adonis-fold": "git+https://github.com/poppinss/adonis-fold.git#dawn",
"adonis-sink": "git+https://github.com/adonisjs/adonis-sink.git",
"@adonisjs/fold": "^4.0.0",
"@adonisjs/sink": "^1.0.8",
"clear-require": "^2.0.0",
"coveralls": "^2.13.0",
"cz-conventional-changelog": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion test/helpers.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ test.group('Helpers', (group) => {

test('promisify a function', async (assert) => {
const packageFile = await this.helpers.promisify(fs.readFile)(path.join(__dirname, '../package.json'))
assert.equal(JSON.parse(packageFile).name, 'adonis-ignitor')
assert.equal(JSON.parse(packageFile).name, '@adonisjs/ignitor')
})
})
4 changes: 2 additions & 2 deletions test/ignitor.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
const path = require('path')
const test = require('japa')
const clearRequire = require('clear-require')
const { Env } = require('adonis-sink')
const fold = require('adonis-fold')
const { Env } = require('@adonisjs/sink')
const fold = require('@adonisjs/fold')
const hooks = require('../src/Hooks')
const Ignitor = require('../src/Ignitor')
const fs = require('fs-extra')
Expand Down
2 changes: 1 addition & 1 deletion test/providers/FooProvider.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

const { ServiceProvider } = require('adonis-fold')
const { ServiceProvider } = require('@adonisjs/fold')

class FooProvider extends ServiceProvider {
constructor (ioc) {
Expand Down
2 changes: 1 addition & 1 deletion test/providers/SlowProvider.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

const { ServiceProvider } = require('adonis-fold')
const { ServiceProvider } = require('@adonisjs/fold')

class FooProvider extends ServiceProvider {
constructor (ioc) {
Expand Down

0 comments on commit 03e5bf6

Please sign in to comment.