Skip to content

Commit

Permalink
update bower to reference the unminified file
Browse files Browse the repository at this point in the history
  • Loading branch information
tscanlin committed Nov 30, 2016
1 parent c55385a commit dfb0522
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bower.json
Expand Up @@ -2,7 +2,7 @@
"name": "tocbot",
"description": "Generate a table of contents based on the heading structure of a html document.",
"main": [
"dist/tocbot.min.js",
"dist/tocbot.js",
"dist/tocbot.css"
],
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -11,7 +11,7 @@
"mkdir-dist": "mkdir dist",
"build-css": "node-sass --include-path ./node_modules --output-style compressed -o build/assets/css src/scss",
"build-css-watch": "node-sass --source-map-embed --watch --include-path ./node_modules --output-style compressed -o build/assets/css src/scss",
"build-dist": "cp build/assets/js/tocbot.min.js ./dist/ && cp build/assets/css/tocbot.css ./dist/",
"build-dist": "cp build/assets/js/tocbot.js ./dist/ && cp build/assets/js/tocbot.min.js ./dist/ && cp build/assets/css/tocbot.css ./dist/",
"build-js": "webpack src/js/index.js build/assets/js/tocbot.js -d",
"build-js-watch": "webpack src/js/index.js build/assets/js/tocbot.js -d --watch",
"build-js-uglify": "webpack src/js/index.js build/assets/js/tocbot.min.js -d --optimize-minimize",
Expand Down

0 comments on commit dfb0522

Please sign in to comment.