vue-line-fit
Version:
analytically fit single line text to box
16 lines (14 loc) • 342 B
text/coffeescript
webpack = require "webpack"
module.exports =
entry: "./build/common.coffee"
output:
filename: "bundle.js"
path: __dirname
module:
loaders: [
{ test: /\.coffee$/, loader: "coffee"}
]
plugins: [
new webpack.optimize.UglifyJsPlugin compress: warnings: false
new webpack.optimize.OccurenceOrderPlugin()
]