Skip to content

Commit

Permalink
Merge branch 'master' into rename-hidden-setting
Browse files Browse the repository at this point in the history
  • Loading branch information
ekonstantinidis committed Jan 3, 2016
2 parents 9e8717e + c2dc2ad commit 4fb1c1b
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ dist/
drfdocs.egg-info/

rest_framework_docs/static/node_modules/
rest_framework_docs/static/rest_framework_docs/js/dist.js.map
rest_framework_docs/static/rest_framework_docs/js/dist.min.js.map
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ prune rest_framework_docs/static/node_modules
graft rest_framework_docs/static/rest_framework_docs
graft rest_framework_docs/templates/rest_framework_docs

recursive-exclude rest_framework_docs/static/rest_framework_docs dist.js.map index.js
recursive-exclude rest_framework_docs/static/rest_framework_docs dist.min.js.map index.js
recursive-exclude rest_framework_docs/static/rest_framework_docs/*/* *
2 changes: 1 addition & 1 deletion rest_framework_docs/static/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"release-js": "webpack --config webpack.rel.config.js",
"release": "npm run build-font-awesome && npm run build-bootstrap-fonts && npm run release-js && npm run build-less",
"start": "npm run build && npm run watch-less",
"lint": "eslint 'rest_framework_docs/js/' --ignore-pattern 'rest_framework_docs/js/dist.js'",
"lint": "eslint 'rest_framework_docs/js/' --ignore-pattern 'rest_framework_docs/js/dist.min.js'",
"test": "npm run lint"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion rest_framework_docs/static/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
entry: './index.js',
output: {
path: __dirname + '/rest_framework_docs/js',
filename: 'dist.js'
filename: 'dist.min.js'
},
devtool: 'source-map',
plugins: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ <h3>Document Web APIs made with <a href="http://www.django-rest-framework.org/"
</div>

<!-- Dist.js - Inlcuded Live API, jQuery, Bootstrap -->
<script type="text/javascript" src="{% static "rest_framework_docs/js/dist.js" %}"></script>
<script type="text/javascript" src="{% static "rest_framework_docs/js/dist.min.js" %}"></script>
</body>
</html>

0 comments on commit 4fb1c1b

Please sign in to comment.