summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 2.37.0syuilo2018-06-111-3/+3
|
* Merge pull request #1697 from syuilo/l10n_mastersyuilo2018-06-1110-18/+38
|\ | | | | New Crowdin translations
| * New translations ja.yml (English)syuilo2018-06-111-1/+1
| |
| * New translations ja.yml (Portuguese)syuilo2018-06-111-0/+2
| |
| * New translations ja.yml (Korean)syuilo2018-06-111-0/+2
| |
| * New translations ja.yml (Polish)syuilo2018-06-111-0/+2
| |
| * New translations ja.yml (Chinese Simplified)syuilo2018-06-111-0/+2
| |
| * New translations ja.yml (Italian)syuilo2018-06-111-0/+2
| |
| * New translations ja.yml (Russian)syuilo2018-06-111-0/+2
| |
| * New translations ja.yml (English)syuilo2018-06-111-0/+2
| |
| * New translations ja.yml (Spanish)syuilo2018-06-111-0/+2
| |
| * New translations ja.yml (German)syuilo2018-06-111-0/+2
| |
| * New translations ja.yml (French)syuilo2018-06-111-0/+2
| |
| * New translations ja.yml (French)syuilo2018-06-111-15/+15
| |
| * New translations ja.yml (Polish)syuilo2018-06-111-3/+3
| |
* | Merge pull request #1702 from syuilo/hashtags-statssyuilo2018-06-1115-7/+368
|\ \ | | | | | | Hashtags stats
| * | :v:syuilo2018-06-111-3/+1
| | |
| * | :v:syuilo2018-06-114-31/+119
| | |
| * | wipsyuilo2018-06-1110-43/+185
| | |
| * | wipsyuilo2018-06-118-7/+140
| | |
* | | Merge pull request #1698 from syuilo/cleanup-dependenciessyuilo2018-06-111-60/+62
|\ \ \ | |/ / |/| | :up: move some packages to devDependencies that non required by server
| * | :up: move some packages to devDependencies that non required by serverotofune2018-06-111-60/+62
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | presumed by: - move-to-devdependencies.fish ```fish set targets (ls src | grep -v client | xargs -I'%' echo "src/%") alias from_import="git grep 'import ' $targets | grep -v 'from \'\.' | grep -v 'from \"\.' | cut -d: -f2 | cut -d\; -f1 | rev | cut -d' ' -f1 | rev | cut -d\' -f2 | sort | uniq | grep -v '^readline\$' | grep -v '^zlib\$' | grep -v '^os\$' | grep -v '^http\$' | grep -v '^fs\$' | grep -v '^events\$' | grep -v '^crypto\$' | grep -v '^child_process\$' | grep -v '^cluster\$'`" alias from_require="git grep 'require(' $targets | grep -v '(\'\.' | cut -d= -f2 | grep -v '__dirname' | grep require | cut -d' ' -f2 | cut -d')' -f1 | cut -d'(' -f2 | cut -d'\'' -f2 | sort | uniq | grep -v '^readline\$' | grep -v '^zlib\$' | grep -v '^os\$' | grep -v '^http\$' | grep -v '^fs\$' | grep -v '^events\$' | grep -v '^crypto\$' | grep -v '^child_process\$' | grep -v '^cluster\$'" from_import | xargs npm uninstall --save-dev from_require | xargs npm uninstall --save-dev from_import | xargs npm install --save from_require | xargs npm install --save git show HEAD:require | node revert-pinning-dependencies.js ``` - revert-pinning-dependencies.js ```js const readFromStdin = () => new Promise((resolve, reject) => { const chunks = [] process.stdin.setEncoding('utf8') process.stdin.on('readable', () => { const chunk = process.stdin.read() if (chunk == null) return chunks.push(chunk) }) process.stdin.on('end', () => { return resolve(chunks.join('\n')) }) }) async function main () { const fs = require('fs') const raw = await readFromStdin() const head = JSON.parse(raw) const now = JSON.parse(fs.readFileSync('package.json')) Object.keys(now.dependencies).forEach(key => { now.dependencies[key] = head.dependencies[key] }) fs.writeFileSync('package.json', JSON.stringify(now,null,'\t')) } main().catch(console.error) ```
* | Update example.ymlsyuilo2018-06-111-0/+4
| |
* | 2.36.1syuilo2018-06-111-2/+2
| |
* | Merge pull request #1694 from syuilo/l10n_mastersyuilo2018-06-1110-0/+40
|\| | | | | New Crowdin translations
| * New translations ja.yml (English)syuilo2018-06-111-3/+3
| |
| * New translations ja.yml (Portuguese)syuilo2018-06-101-0/+4
| |
| * New translations ja.yml (Korean)syuilo2018-06-101-0/+4
| |
| * New translations ja.yml (Polish)syuilo2018-06-101-0/+4
| |
| * New translations ja.yml (Chinese Simplified)syuilo2018-06-101-0/+4
| |
| * New translations ja.yml (Italian)syuilo2018-06-101-0/+4
| |
| * New translations ja.yml (Russian)syuilo2018-06-101-0/+4
| |
| * New translations ja.yml (English)syuilo2018-06-101-0/+4
| |
| * New translations ja.yml (Spanish)syuilo2018-06-101-0/+4
| |
| * New translations ja.yml (German)syuilo2018-06-101-0/+4
| |
| * New translations ja.yml (French)syuilo2018-06-101-0/+4
| |
* | Fix #1695syuilo2018-06-111-0/+1
| |
* | タグは最大100文字までにしたsyuilo2018-06-111-1/+3
| |
* | Revert ":v:"syuilo2018-06-111-0/+2
| | | | | | | | This reverts commit 96ab0e7b4caee288b605ba2799878f89d0e67429.
* | :v:syuilo2018-06-111-2/+0
| |
* | :pizza:syuilo2018-06-111-4/+1
| |
* | :v:syuilo2018-06-101-0/+5
| |
* | :art:syuilo2018-06-102-3/+13
| |
* | 2.36.0syuilo2018-06-101-2/+2
| |
* | Merge pull request #1692 from syuilo/l10n_mastersyuilo2018-06-101-11/+11
|\| | | | | New Crowdin translations
| * New translations ja.yml (Polish)syuilo2018-06-101-11/+11
| |
* | :pizza:syuilo2018-06-101-1/+5
| |
* | ハッシュタグ検索を実装syuilo2018-06-1012-7/+470
| |
* | 2.35.3syuilo2018-06-101-2/+2
| |
* | Fix bugsyuilo2018-06-102-3/+19
| |