Skip to content

Commit 4fb1c1b

Browse files
Merge branch 'master' into rename-hidden-setting
2 parents 9e8717e + c2dc2ad commit 4fb1c1b

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ dist/
1010
drfdocs.egg-info/
1111

1212
rest_framework_docs/static/node_modules/
13-
rest_framework_docs/static/rest_framework_docs/js/dist.js.map
13+
rest_framework_docs/static/rest_framework_docs/js/dist.min.js.map

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ prune rest_framework_docs/static/node_modules
1111
graft rest_framework_docs/static/rest_framework_docs
1212
graft rest_framework_docs/templates/rest_framework_docs
1313

14-
recursive-exclude rest_framework_docs/static/rest_framework_docs dist.js.map index.js
14+
recursive-exclude rest_framework_docs/static/rest_framework_docs dist.min.js.map index.js
1515
recursive-exclude rest_framework_docs/static/rest_framework_docs/*/* *

rest_framework_docs/static/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"release-js": "webpack --config webpack.rel.config.js",
1616
"release": "npm run build-font-awesome && npm run build-bootstrap-fonts && npm run release-js && npm run build-less",
1717
"start": "npm run build && npm run watch-less",
18-
"lint": "eslint 'rest_framework_docs/js/' --ignore-pattern 'rest_framework_docs/js/dist.js'",
18+
"lint": "eslint 'rest_framework_docs/js/' --ignore-pattern 'rest_framework_docs/js/dist.min.js'",
1919
"test": "npm run lint"
2020
},
2121
"repository": {

rest_framework_docs/static/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module.exports = {
55
entry: './index.js',
66
output: {
77
path: __dirname + '/rest_framework_docs/js',
8-
filename: 'dist.js'
8+
filename: 'dist.min.js'
99
},
1010
devtool: 'source-map',
1111
plugins: [

rest_framework_docs/templates/rest_framework_docs/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ <h3>Document Web APIs made with <a href="http://www.django-rest-framework.org/"
7676
</div>
7777

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

0 commit comments

Comments
 (0)