Skip to content

Commit

Permalink
Various minor fixes (#21)
Browse files Browse the repository at this point in the history
* Add *.swp and __pycache__/ to .gitignore.

* Make manage.py executable.

* Move react-addons-css-transition-group to devDependencies

* .gitignore virtualenv directories in project root.
  • Loading branch information
normangilmore authored and stefanv committed Oct 13, 2016
1 parent e7ead33 commit dcc40d4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
10 changes: 7 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,21 @@ tests.tap
*~
*#

# vim artifacts
*.swp

# intellij artifacts
.idea/
*.iml

# python artifacts
*.pyc
.Python
bin/
include/
lib/
/bin/
/include/
/lib/
pip-selfcheck.json
__pycache__/

# django artifacts
staticfiles
Expand Down
Empty file modified manage.py
100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "A content analysis plugin for annotator",
"repository": {
"type": "git",
"url": "[email protected]:Goodly/annotator-content-analysis.git"
"url": "[email protected]:Goodly/TextThresher.git"
},
"scripts": {
"dev": "node --harmony ./webpack/dev-server.js",
Expand Down Expand Up @@ -55,6 +55,7 @@
"postcss-loader": "^0.8.0",
"raw-loader": "^0.5.1",
"react": "^0.14.7",
"react-addons-css-transition-group": "^0.14.7",
"react-dom": "^0.14.7",
"react-hot-loader": "^1.2.5",
"react-redux": "^4.2.1",
Expand All @@ -70,6 +71,5 @@
"webpack-dev-server": "^1.12.0"
},
"dependencies": {
"react-addons-css-transition-group": "^0.14.7"
}
}

0 comments on commit dcc40d4

Please sign in to comment.