Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
peterlevel1 authored Mar 31, 2017
2 parents d1eb5e3 + fad0314 commit fcb3b33
Show file tree
Hide file tree
Showing 13 changed files with 3,418 additions and 1 deletion.
2 changes: 1 addition & 1 deletion AUTHORS.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Peter
Peter <[email protected]>
coco <[email protected]>
Binary file added assets/logo-20-20.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/snsd.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"postcss-loader": "^1.3.3",
"precss": "^1.4.0",
"style-loader": "^0.16.1",
"url-loader": "^0.5.8",
"webpack": "^2.3.2"
}
}
19 changes: 19 additions & 0 deletions packs/css-loader/configs/webpack.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
var path = require("path")
var webpack = require("webpack")

module.exports = {
entry: __dirname + "/src/index.js",
output: {
path: __dirname + "/dist",
filename: "[name].bundle.js"
},
module: {
rules: [
{
test: /\.css$/,
use: [ 'style-loader', 'css-loader' ]
}
]
},
plugins: []
}
Loading

0 comments on commit fcb3b33

Please sign in to comment.