mirror of https://github.com/embarklabs/embark.git
refactor(@embark/core): move console source out of lib folder
This commit is contained in:
parent
63e83dcfce
commit
d0d584a934
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
},
|
||||
"extends": "../../../tsconfig.base.json",
|
||||
"include": [
|
||||
"src/lib/**/*"
|
||||
"src/**/*"
|
||||
],
|
||||
"references": [
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue