| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 2.37.0 | syuilo | 2018-06-11 | 1 | -3/+3 |
| | | |||||
| * | Merge pull request #1697 from syuilo/l10n_master | syuilo | 2018-06-11 | 10 | -18/+38 |
| |\ | | | | | New Crowdin translations | ||||
| | * | New translations ja.yml (English) | syuilo | 2018-06-11 | 1 | -1/+1 |
| | | | |||||
| | * | New translations ja.yml (Portuguese) | syuilo | 2018-06-11 | 1 | -0/+2 |
| | | | |||||
| | * | New translations ja.yml (Korean) | syuilo | 2018-06-11 | 1 | -0/+2 |
| | | | |||||
| | * | New translations ja.yml (Polish) | syuilo | 2018-06-11 | 1 | -0/+2 |
| | | | |||||
| | * | New translations ja.yml (Chinese Simplified) | syuilo | 2018-06-11 | 1 | -0/+2 |
| | | | |||||
| | * | New translations ja.yml (Italian) | syuilo | 2018-06-11 | 1 | -0/+2 |
| | | | |||||
| | * | New translations ja.yml (Russian) | syuilo | 2018-06-11 | 1 | -0/+2 |
| | | | |||||
| | * | New translations ja.yml (English) | syuilo | 2018-06-11 | 1 | -0/+2 |
| | | | |||||
| | * | New translations ja.yml (Spanish) | syuilo | 2018-06-11 | 1 | -0/+2 |
| | | | |||||
| | * | New translations ja.yml (German) | syuilo | 2018-06-11 | 1 | -0/+2 |
| | | | |||||
| | * | New translations ja.yml (French) | syuilo | 2018-06-11 | 1 | -0/+2 |
| | | | |||||
| | * | New translations ja.yml (French) | syuilo | 2018-06-11 | 1 | -15/+15 |
| | | | |||||
| | * | New translations ja.yml (Polish) | syuilo | 2018-06-11 | 1 | -3/+3 |
| | | | |||||
| * | | Merge pull request #1702 from syuilo/hashtags-stats | syuilo | 2018-06-11 | 15 | -7/+368 |
| |\ \ | | | | | | | Hashtags stats | ||||
| | * | | :v: | syuilo | 2018-06-11 | 1 | -3/+1 |
| | | | | |||||
| | * | | :v: | syuilo | 2018-06-11 | 4 | -31/+119 |
| | | | | |||||
| | * | | wip | syuilo | 2018-06-11 | 10 | -43/+185 |
| | | | | |||||
| | * | | wip | syuilo | 2018-06-11 | 8 | -7/+140 |
| | | | | |||||
| * | | | Merge pull request #1698 from syuilo/cleanup-dependencies | syuilo | 2018-06-11 | 1 | -60/+62 |
| |\ \ \ | |/ / |/| | | :up: move some packages to devDependencies that non required by server | ||||
| | * | | :up: move some packages to devDependencies that non required by server | otofune | 2018-06-11 | 1 | -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.yml | syuilo | 2018-06-11 | 1 | -0/+4 |
| | | | |||||
| * | | 2.36.1 | syuilo | 2018-06-11 | 1 | -2/+2 |
| | | | |||||
| * | | Merge pull request #1694 from syuilo/l10n_master | syuilo | 2018-06-11 | 10 | -0/+40 |
| |\| | | | | | New Crowdin translations | ||||
| | * | New translations ja.yml (English) | syuilo | 2018-06-11 | 1 | -3/+3 |
| | | | |||||
| | * | New translations ja.yml (Portuguese) | syuilo | 2018-06-10 | 1 | -0/+4 |
| | | | |||||
| | * | New translations ja.yml (Korean) | syuilo | 2018-06-10 | 1 | -0/+4 |
| | | | |||||
| | * | New translations ja.yml (Polish) | syuilo | 2018-06-10 | 1 | -0/+4 |
| | | | |||||
| | * | New translations ja.yml (Chinese Simplified) | syuilo | 2018-06-10 | 1 | -0/+4 |
| | | | |||||
| | * | New translations ja.yml (Italian) | syuilo | 2018-06-10 | 1 | -0/+4 |
| | | | |||||
| | * | New translations ja.yml (Russian) | syuilo | 2018-06-10 | 1 | -0/+4 |
| | | | |||||
| | * | New translations ja.yml (English) | syuilo | 2018-06-10 | 1 | -0/+4 |
| | | | |||||
| | * | New translations ja.yml (Spanish) | syuilo | 2018-06-10 | 1 | -0/+4 |
| | | | |||||
| | * | New translations ja.yml (German) | syuilo | 2018-06-10 | 1 | -0/+4 |
| | | | |||||
| | * | New translations ja.yml (French) | syuilo | 2018-06-10 | 1 | -0/+4 |
| | | | |||||
| * | | Fix #1695 | syuilo | 2018-06-11 | 1 | -0/+1 |
| | | | |||||
| * | | タグは最大100文字までにした | syuilo | 2018-06-11 | 1 | -1/+3 |
| | | | |||||
| * | | Revert ":v:" | syuilo | 2018-06-11 | 1 | -0/+2 |
| | | | | | | | | | This reverts commit 96ab0e7b4caee288b605ba2799878f89d0e67429. | ||||
| * | | :v: | syuilo | 2018-06-11 | 1 | -2/+0 |
| | | | |||||
| * | | :pizza: | syuilo | 2018-06-11 | 1 | -4/+1 |
| | | | |||||
| * | | :v: | syuilo | 2018-06-10 | 1 | -0/+5 |
| | | | |||||
| * | | :art: | syuilo | 2018-06-10 | 2 | -3/+13 |
| | | | |||||
| * | | 2.36.0 | syuilo | 2018-06-10 | 1 | -2/+2 |
| | | | |||||
| * | | Merge pull request #1692 from syuilo/l10n_master | syuilo | 2018-06-10 | 1 | -11/+11 |
| |\| | | | | | New Crowdin translations | ||||
| | * | New translations ja.yml (Polish) | syuilo | 2018-06-10 | 1 | -11/+11 |
| | | | |||||
| * | | :pizza: | syuilo | 2018-06-10 | 1 | -1/+5 |
| | | | |||||
| * | | ハッシュタグ検索を実装 | syuilo | 2018-06-10 | 12 | -7/+470 |
| | | | |||||
| * | | 2.35.3 | syuilo | 2018-06-10 | 1 | -2/+2 |
| | | | |||||
| * | | Fix bug | syuilo | 2018-06-10 | 2 | -3/+19 |
| | | | |||||