-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moved several deps from bower to npm
- Loading branch information
Showing
10 changed files
with
72 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
bower_components | ||
bower.json | ||
.bowerrc | ||
build | ||
cache | ||
CHANGELOG.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
node_modules/ | ||
bower_components/ | ||
web/ | ||
.idea | ||
*.swp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,38 @@ | ||
{ | ||
"name": "gitlab-kanban-client", | ||
"version": "0.0.1", | ||
"repository": "gitlab.com/vasiliy-t/gitlab-kanban-client", | ||
"devDependencies": { | ||
"bower": "1.4.1", | ||
"grunt": "~0.4.1", | ||
"grunt-cli": "~0.1.13", | ||
"grunt-contrib-copy": "^0.5.0", | ||
"grunt-contrib-concat": "~0.5.0", | ||
"grunt-contrib-watch": "~0.5.3", | ||
"grunt-contrib-uglify": "~0.7.0", | ||
"grunt-sass": "1.0.0", | ||
"grunt-contrib-connect": "~0.8.0", | ||
"grunt-connect-proxy": "~0.1.11" | ||
} | ||
"name": "kanban", | ||
"version": "0.0.1", | ||
"repository": "gitlab.com/leanlabsio/kanban", | ||
"scripts": { | ||
"install": "npm install", | ||
"build": "grunt build", | ||
"watch": "grunt watch" | ||
}, | ||
"devDependencies": { | ||
"grunt": "~0.4.1", | ||
"grunt-cli": "~0.1.13", | ||
"grunt-contrib-copy": "^0.5.0", | ||
"grunt-contrib-concat": "~0.5.0", | ||
"grunt-contrib-watch": "~0.5.3", | ||
"grunt-contrib-uglify": "~0.7.0", | ||
"grunt-sass": "1.0.0", | ||
"grunt-contrib-connect": "~0.8.0", | ||
"grunt-connect-proxy": "~0.1.11" | ||
}, | ||
"dependencies": { | ||
"angular": "=1.5.6", | ||
"angular-lodash": "https://github.com/EMSSConsulting/angular-lodash.git#68a726c", | ||
"foundation-sites": "5.5.2", | ||
"angular-foundation": "https://github.com/pineconellc/angular-foundation.git#8f3f260", | ||
"angular-loading-bar": "=0.5.2", | ||
"angular-storage": "=0.0.6", | ||
"angular-ui-router": "=0.3.0", | ||
"angularjs-datepicker": "=0.2.15", | ||
"font-awesome": "=4.6.3", | ||
"markdown-it": "=5.0.2", | ||
"markdown-it-emoji": "=1.1.0", | ||
"ng-sortable": "=1.3.6", | ||
"sass-flex-mixin": "=1.0.3", | ||
"lodash": "=4.13.1", | ||
"twemoji": "=2.1.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
(function(twemoji) { | ||
window.md_twemoji_plugin = function(md) { | ||
md.renderer.rules.emoji = function(token, idx) { | ||
return twemoji.parse(token[idx].content, {base: "/", folder: "images/twemoji/svg", ext: ".svg"}); | ||
return twemoji.parse(token[idx].content, {folder: "svg", ext: ".svg"}); | ||
}; | ||
}; | ||
}(window.twemoji)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,4 +50,4 @@ | |
.#{$key}-ava { | ||
background-color: $key-color-9 !important; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters