Skip to content

Commit

Permalink
renamed dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
crabbly committed Sep 18, 2018
1 parent 872c61c commit dbf3ffb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "print-js",
"homepage": "http://printjs.crabbly.com",
"description": "A tiny javascript library to help printing from the web.",
"version": "1.0.49",
"main": "dist/print.min.js",
"version": "1.0.51",
"main": "dist/print.js",
"repository": "https://github.com/crabbly/Print.js",
"license": "MIT",
"dependences": {},
Expand Down
2 changes: 1 addition & 1 deletion test.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<script src='./dist/print.min.js'></script>
<script src='./dist/print.js'></script>
<script type="text/javascript">
function printPdf() {
printJS('test.pdf');
Expand Down
4 changes: 2 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = {
],
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'print.min.js',
filename: 'print.js',
sourceMapFilename: 'print.map'
},
module: {
Expand Down Expand Up @@ -51,7 +51,7 @@ module.exports = {
},
plugins: [
new MiniCssExtractPlugin({
filename: 'print.min.css'
filename: 'print.css'
})
],
optimization: {
Expand Down

0 comments on commit dbf3ffb

Please sign in to comment.