Move build.ts and export.ts into src/cli - fixes #115

This commit is contained in:
Rich Harris
2018-02-13 15:57:02 -05:00
committed by GitHub
parent b29700f725
commit 2be9dd1883
4 changed files with 4 additions and 9 deletions

View File

@@ -1,4 +1,5 @@
import { build, export as exporter } from 'sapper/core.js';
import build from './build.js';
import exporter from './export.js';
import { dest, entry, isDev, src } from '../config';
process.env.NODE_ENV = 'production';