parent
02c3b42ec7
commit
9ee60594bf
@ -1,6 +1,3 @@ |
|||||||
{ |
{ |
||||||
"extends": "standard", |
"extends": "standard" |
||||||
"globals": { |
|
||||||
"$": false |
|
||||||
} |
|
||||||
} |
} |
||||||
|
@ -0,0 +1,5 @@ |
|||||||
|
{ |
||||||
|
presets: [ |
||||||
|
'env' |
||||||
|
] |
||||||
|
} |
@ -1,118 +0,0 @@ |
|||||||
exports.config = { |
|
||||||
// See http://brunch.io/#documentation for docs.
|
|
||||||
files: { |
|
||||||
javascripts: { |
|
||||||
entryPoints: { |
|
||||||
'js/app.js': 'js/app.js' |
|
||||||
}, |
|
||||||
|
|
||||||
joinTo: { |
|
||||||
'js/test.js': [/^spec/, /^js/, /^node_modules/] |
|
||||||
} |
|
||||||
|
|
||||||
// To use a separate vendor.js bundle, specify two files path
|
|
||||||
// http://brunch.io/docs/config#-files-
|
|
||||||
// joinTo: {
|
|
||||||
// 'js/app.js': /^js/,
|
|
||||||
// 'js/vendor.js': /^(?!js)/
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// To change the order of concatenation of files, explicitly mention here
|
|
||||||
// order: {
|
|
||||||
// before: [
|
|
||||||
// 'vendor/js/jquery-2.1.1.js',
|
|
||||||
// 'vendor/js/bootstrap.min.js'
|
|
||||||
// ]
|
|
||||||
// }
|
|
||||||
}, |
|
||||||
stylesheets: { |
|
||||||
joinTo: { |
|
||||||
'css/app.css': 'css/app.scss' |
|
||||||
} |
|
||||||
}, |
|
||||||
templates: { |
|
||||||
joinTo: 'js/app.js' |
|
||||||
} |
|
||||||
}, |
|
||||||
|
|
||||||
conventions: { |
|
||||||
// This option sets where we should place non-css and non-js assets in.
|
|
||||||
// By default, we set this to '/assets/static'. Files in this directory
|
|
||||||
// will be copied to `paths.public`, which is 'priv/static' by default.
|
|
||||||
assets: /^(static)/ |
|
||||||
}, |
|
||||||
|
|
||||||
// Phoenix paths configuration
|
|
||||||
paths: { |
|
||||||
// Dependencies and current project directories to watch
|
|
||||||
watched: ['static', 'css', 'css/**', 'js', 'vendor', 'spec'], |
|
||||||
// Where to compile files to
|
|
||||||
public: '../priv/static' |
|
||||||
}, |
|
||||||
|
|
||||||
// Configure your plugins
|
|
||||||
plugins: { |
|
||||||
babel: { |
|
||||||
presets: ['env'], |
|
||||||
|
|
||||||
// Do not use ES6 compiler in vendor code
|
|
||||||
ignore: [/vendor/] |
|
||||||
}, |
|
||||||
|
|
||||||
copycat: { |
|
||||||
'fonts': ['node_modules/font-awesome/fonts'] |
|
||||||
}, |
|
||||||
|
|
||||||
sass: { |
|
||||||
mode: 'native', |
|
||||||
precision: 8, |
|
||||||
allowCache: true, |
|
||||||
options: { |
|
||||||
includePaths: [ |
|
||||||
'node_modules/bootstrap/scss', |
|
||||||
'node_modules/font-awesome/scss' |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
|
|
||||||
postcss: { |
|
||||||
processors: [ |
|
||||||
require('autoprefixer')(['last 4 versions']), |
|
||||||
require('csswring')() |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
|
|
||||||
modules: { |
|
||||||
autoRequire: { |
|
||||||
'js/app.js': ['js/app'], |
|
||||||
'js/test.js': ['spec/spec_helper'] |
|
||||||
} |
|
||||||
}, |
|
||||||
|
|
||||||
overrides: { |
|
||||||
production: { |
|
||||||
optimize: true, |
|
||||||
sourceMaps: false, |
|
||||||
plugins: { |
|
||||||
autoReload: {enabled: false}, |
|
||||||
}, |
|
||||||
modules: {autoRequire: {'js/app.js': ['js/app']}}, |
|
||||||
paths: {watched: ['static', 'css', 'css/**', 'js', 'vendor']}, |
|
||||||
files: { |
|
||||||
javascripts: {joinTo: 'js/app.js'}, |
|
||||||
stylesheets: {joinTo: 'css/app.css'}, |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
|
|
||||||
npm: { |
|
||||||
enabled: true, |
|
||||||
globals: { |
|
||||||
$: 'jquery', |
|
||||||
jQuery: 'jquery', |
|
||||||
Popper: 'popper.js', |
|
||||||
bootstrap: 'bootstrap' |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@ |
|||||||
|
module.exports = { |
||||||
|
plugins: [ |
||||||
|
require('autoprefixer')({ |
||||||
|
browsers: [ |
||||||
|
'last 4 versions' |
||||||
|
] |
||||||
|
}) |
||||||
|
] |
||||||
|
}; |
@ -0,0 +1,56 @@ |
|||||||
|
const path = require('path'); |
||||||
|
const ExtractTextPlugin = require('extract-text-webpack-plugin'); |
||||||
|
const CopyWebpackPlugin = require('copy-webpack-plugin'); |
||||||
|
|
||||||
|
module.exports = { |
||||||
|
entry: './js/app.js', |
||||||
|
output: { |
||||||
|
filename: 'app.js', |
||||||
|
path: path.resolve(__dirname, '../priv/static/js') |
||||||
|
}, |
||||||
|
module: { |
||||||
|
rules: [ |
||||||
|
{ |
||||||
|
test: /\.js$/, |
||||||
|
exclude: /node_modules/, |
||||||
|
use: { |
||||||
|
loader: 'babel-loader' |
||||||
|
} |
||||||
|
}, |
||||||
|
{ |
||||||
|
test: /\.scss$/, |
||||||
|
use: ExtractTextPlugin.extract({ |
||||||
|
use: [{ |
||||||
|
loader: "css-loader" |
||||||
|
}, { |
||||||
|
loader: "postcss-loader" |
||||||
|
}, { |
||||||
|
loader: "sass-loader", |
||||||
|
options: { |
||||||
|
precision: 8, |
||||||
|
includePaths: [ |
||||||
|
'node_modules/bootstrap/scss', |
||||||
|
'node_modules/font-awesome/scss' |
||||||
|
] |
||||||
|
} |
||||||
|
}], |
||||||
|
fallback: 'style-loader' |
||||||
|
}) |
||||||
|
}, { |
||||||
|
test: /\.(svg|ttf|eot|woff|woff2)$/, |
||||||
|
use: { |
||||||
|
loader: 'file-loader', |
||||||
|
options: { |
||||||
|
name: '[name].[ext]', |
||||||
|
outputPath: '../fonts/', |
||||||
|
publicPath: '../fonts/' |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
] |
||||||
|
}, |
||||||
|
plugins: [ |
||||||
|
new ExtractTextPlugin('../css/app.css'), |
||||||
|
new CopyWebpackPlugin([{ from: 'static/', to: '../' }]) |
||||||
|
] |
||||||
|
}; |
Loading…
Reference in new issue