-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added bower, and fixed npm css peer-dep
- Loading branch information
1 parent
e9d304e
commit 1274b5d
Showing
6 changed files
with
31 additions
and
14 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,3 +1,4 @@ | ||
src/ | ||
dist/ | ||
example/ | ||
.editorconfig | ||
|
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,9 @@ | ||
const execSync = require('child_process').execSync; | ||
const bump = process.argv[2] || 'patch'; | ||
|
||
execSync(`npm version ${bump}`, { | ||
execSync(`npm version ${bump} --no-git-tag-version`, { | ||
stdio: [0, 1, 2] | ||
}); | ||
execSync(`bower version ${bump}`, { | ||
stdio: [0, 1, 2] | ||
}); |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"name": "emoji-panel.js", | ||
"version": "0.1.1", | ||
"description": "Add panel picker for emojis with different types of sets on your website. http://TimeToKnow.github.io/emoji-panel/", | ||
"main": [ | ||
"dist/emoji-panel.js", | ||
"dist/emoji-panel-apple-32.css" | ||
], | ||
"ignore": [], | ||
"homepage": "https://github.com/TimeToKnow/emoji-panel", | ||
"authors": [ | ||
"unimonkiez <[email protected]>" | ||
], | ||
"license": "MIT" | ||
} |
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 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