Skip to content

Commit 8bbf6f5

Browse files
committed
Fix JS build
1 parent 83905ae commit 8bbf6f5

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ __pycache__/
88
node_modules/
99
dist/
1010
build/
11-
/task_api/static/django-task-api.js
11+
/task_api/static/django-task-api.*js

javascript/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

javascript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "django-task-api",
3-
"version": "1.0.0",
3+
"version": "1.0.3",
44
"description": "Client library for the Django Task API",
55
"main": "dist/django-task-api.min.js",
66
"module": "src/index.js",
@@ -9,7 +9,7 @@
99
"src"
1010
],
1111
"scripts": {
12-
"build": "webpack --config webpack.config.babel.js && cp dist/django-task-api.js ../task_api/static/"
12+
"build": "webpack --config webpack.config.babel.js && cp dist/django-task-api.min.js ../task_api/static/"
1313
},
1414
"repository": {
1515
"type": "git",

task_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '1.0.2'
1+
__version__ = '1.0.3'
22

33
default_app_config = 'task_api.apps.TaskAPIConfig'

0 commit comments

Comments
 (0)