refactor(@embark/core): move console source out of lib folder

This commit is contained in:
Pascal Precht 2020-01-22 12:09:32 +01:00 committed by Iuri Matias
parent 63e83dcfce
commit d0d584a934
4 changed files with 4 additions and 4 deletions

View File

@ -24,8 +24,8 @@
"type": "git",
"url": "https://github.com/embarklabs/embark.git"
},
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"embark-collective": {
"build:node": true,
"typecheck": true

View File

@ -1,7 +1,7 @@
/*globals describe, it*/
import assert from 'assert';
import { fakeEmbark } from 'embark-testing';
import Console from '../src/lib';
import Console from '../src';
import { version } from '../package.json';
// Due to our `DAPP_PATH` dependency in `embark-utils` `dappPath()`, we need to

View File

@ -7,7 +7,7 @@
},
"extends": "../../../tsconfig.base.json",
"include": [
"src/lib/**/*"
"src/**/*"
],
"references": [
{