1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00

Build環境設定

This commit is contained in:
Dick Choi
2015-11-17 09:00:08 +09:00
parent 51f530ffbe
commit 76a031a8c9
4 changed files with 8 additions and 4 deletions

View File

@@ -1,4 +1,3 @@
import React from 'react'
import { Provider } from 'react-redux'
// import { updateUser } from 'boost/actions'
import { Router, Route, IndexRoute } from 'react-router'
@@ -6,6 +5,7 @@ import MainPage from './MainPage'
import HomePage from './HomePage'
// import auth from 'boost/auth'
import store from 'boost/store'
import React from 'react'
import ReactDOM from 'react-dom'
require('../styles/main/index.styl')
import { openModal } from 'boost/modal'

1
node_modules/boost generated vendored
View File

@@ -1 +0,0 @@
../lib

View File

@@ -4,7 +4,7 @@
"description": "Boost App",
"main": "main.js",
"scripts": {
"start": "BOOST_ENV=development electron ./main.js",
"start": "set BOOST_ENV=development&& electron ./main.js",
"webpack": "webpack-dev-server --hot --inline --config webpack.config.js",
"compile": "NODE_ENV=production webpack --config webpack.config.production.js",
"build": "electron-packager ./ Boost --app-version=$npm_package_version $npm_package_config_platform $npm_package_config_version $npm_package_config_ignore --overwrite",

View File

@@ -4,6 +4,7 @@ var JsonpTemplatePlugin = webpack.JsonpTemplatePlugin
var FunctionModulePlugin = require('webpack/lib/FunctionModulePlugin')
var NodeTargetPlugin = require('webpack/lib/node/NodeTargetPlugin')
var ExternalsPlugin = webpack.ExternalsPlugin
var opt = {
path: path.join(__dirname, 'compiled'),
filename: '[name].js',
@@ -11,6 +12,7 @@ var opt = {
libraryTarget: 'commonjs2',
publicPath: 'http://localhost:8080/assets/'
}
var config = {
module: {
loaders: [
@@ -35,7 +37,10 @@ var config = {
output: opt,
resolve: {
extensions: ['', '.js', '.jsx'],
packageMains: ['webpack', 'browser', 'web', 'browserify', ['jam', 'main'], 'main']
packageMains: ['webpack', 'browser', 'web', 'browserify', ['jam', 'main'], 'main'],
alias: {
'boost': path.resolve(__dirname, 'lib')
}
},
plugins: [
new webpack.NoErrorsPlugin(),