lib dir will be a source of transpilation, so move all es7 there

This commit is contained in:
igorklopov 2016-08-12 11:24:31 +03:00
parent de0b31cdda
commit e86c97b4e1
2 changed files with 7 additions and 7 deletions

View File

@ -1,10 +1,10 @@
import { localPlace, remotePlace } from './lib/places.js';
import build from './lib/build.js';
import { localPlace, remotePlace } from './places.js';
import build from './build.js';
import chalk from 'chalk';
import patchesJson from './patches/patches.json';
import { targets } from './lib/system.js';
import upload from './lib/upload.js';
import { version } from './package.json';
import patchesJson from '../patches/patches.json';
import { targets } from './system.js';
import upload from './upload.js';
import { version } from '../package.json';
const { platform } = process;

View File

@ -63,7 +63,7 @@
"eslint-plugin-standard": "2.0.0"
},
"scripts": {
"build-and-upload": "node -r babel-register build-and-upload.js",
"build-and-upload": "node -r babel-register lib/build-and-upload.js",
"lint": "eslint . || true"
},
"ava": {}