1
0
mirror of https://github.com/jiahaog/Nativefier synced 2024-06-22 07:16:34 +02:00

Add sourcemaps support

This commit is contained in:
Jia Hao 2016-01-24 21:07:22 +08:00
parent 3fa34dead5
commit afbb5c2544
3 changed files with 5 additions and 0 deletions

View File

@ -41,6 +41,7 @@
"lodash": "^4.0.0",
"ncp": "^2.0.0",
"request": "^2.67.0",
"source-map-support": "^0.4.0",
"tmp": "0.0.28",
"validator": "^4.5.0"
},

View File

@ -1,5 +1,7 @@
#! /usr/bin/env node
import 'source-map-support/register';
import path from 'path';
import program from 'commander';
import buildApp from './buildApp';

View File

@ -1,3 +1,5 @@
import 'source-map-support/register';
import buildApp from './buildApp';
export default buildApp;