Commit graph

6539 commits

Author SHA1 Message Date
syuilo
c4ca323ff0 New translations ja.yml (French) 2018-06-11 13:50:56 +09:00
syuilo
c16c399d6a Clean up 2018-06-11 13:49:53 +09:00
syuilo
dd80f31904 2.37.2 2018-06-11 13:48:07 +09:00
syuilo
976865742b Merge pull request #1703 from syuilo/l10n_master
New Crowdin translations
2018-06-11 13:47:42 +09:00
syuilo
fe83b4538f 🍕 2018-06-11 13:46:23 +09:00
syuilo
a32fa43612 ✌️ 2018-06-11 13:45:32 +09:00
syuilo
60e7678f40 New translations ja.yml (English) 2018-06-11 13:00:50 +09:00
syuilo
accd9c6cfd ✌️ 2018-06-11 12:52:47 +09:00
syuilo
01ecb17754 New translations ja.yml (Portuguese) 2018-06-11 11:51:04 +09:00
syuilo
af353e0efd New translations ja.yml (Korean) 2018-06-11 11:51:03 +09:00
syuilo
1841271daa New translations ja.yml (Polish) 2018-06-11 11:51:01 +09:00
syuilo
7ec1ebb964 New translations ja.yml (Chinese Simplified) 2018-06-11 11:50:58 +09:00
syuilo
12890bc872 New translations ja.yml (Italian) 2018-06-11 11:50:57 +09:00
syuilo
4dea19e4e7 New translations ja.yml (Russian) 2018-06-11 11:50:55 +09:00
syuilo
7fac67fc2c New translations ja.yml (English) 2018-06-11 11:50:53 +09:00
syuilo
285dd398b9 New translations ja.yml (Spanish) 2018-06-11 11:50:51 +09:00
syuilo
d90a1311b8 New translations ja.yml (German) 2018-06-11 11:50:49 +09:00
syuilo
7e5f06730f New translations ja.yml (French) 2018-06-11 11:50:47 +09:00
syuilo
6296b13e03 2.37.1 2018-06-11 11:45:27 +09:00
syuilo
c5ba12d49d ✌️ 2018-06-11 11:45:10 +09:00
syuilo
a88d939ece 2.37.0 2018-06-11 11:44:26 +09:00
syuilo
f3c5320ca5 Merge pull request #1697 from syuilo/l10n_master
New Crowdin translations
2018-06-11 11:43:58 +09:00
syuilo
bbca8ad706 New translations ja.yml (English) 2018-06-11 11:41:56 +09:00
syuilo
0bc0faf035 New translations ja.yml (Portuguese) 2018-06-11 11:31:01 +09:00
syuilo
4380009153 New translations ja.yml (Korean) 2018-06-11 11:30:59 +09:00
syuilo
71c804c391 New translations ja.yml (Polish) 2018-06-11 11:30:57 +09:00
syuilo
5631857538 New translations ja.yml (Chinese Simplified) 2018-06-11 11:30:55 +09:00
syuilo
8f84d573f0 New translations ja.yml (Italian) 2018-06-11 11:30:53 +09:00
syuilo
39f0aafbef New translations ja.yml (Russian) 2018-06-11 11:30:51 +09:00
syuilo
47d292612c New translations ja.yml (English) 2018-06-11 11:30:50 +09:00
syuilo
88807fa495 New translations ja.yml (Spanish) 2018-06-11 11:30:47 +09:00
syuilo
7ec8485f00 New translations ja.yml (German) 2018-06-11 11:30:46 +09:00
syuilo
2876da5ad9 New translations ja.yml (French) 2018-06-11 11:30:44 +09:00
syuilo
fea3264b38 Merge pull request #1702 from syuilo/hashtags-stats
Hashtags stats
2018-06-11 11:27:55 +09:00
syuilo
5ed4dd2fe8 ✌️ 2018-06-11 11:27:21 +09:00
syuilo
79b055e237 ✌️ 2018-06-11 11:24:29 +09:00
syuilo
42acdacf30 Merge pull request #1698 from syuilo/cleanup-dependencies
🆙 move some packages to devDependencies that non required by server
2018-06-11 09:40:04 +09:00
syuilo
5cfe2e25c2 wip 2018-06-11 09:11:32 +09:00
syuilo
acd92f8c55 New translations ja.yml (French) 2018-06-11 08:20:56 +09:00
otofune
e69308c0d2 🆙 move some packages to devDependencies that non required by server
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)
```
2018-06-11 08:08:52 +09:00
syuilo
c65e71be7d wip 2018-06-11 06:48:25 +09:00
syuilo
a1cb024ba6 New translations ja.yml (Polish) 2018-06-11 05:41:06 +09:00
syuilo
86674a24c9 Update example.yml 2018-06-11 02:18:00 +09:00
syuilo
c6291ff208 2.36.1 2018-06-11 01:28:45 +09:00
syuilo
b5afac80bb Merge pull request #1694 from syuilo/l10n_master
New Crowdin translations
2018-06-11 01:21:52 +09:00
syuilo
b7cc973ecd New translations ja.yml (English) 2018-06-11 01:21:03 +09:00
syuilo
6ec4e0fa57 Fix #1695 2018-06-11 01:14:29 +09:00
syuilo
bbb5189652 タグは最大100文字までにした 2018-06-11 01:12:37 +09:00
syuilo
ac13593755 Revert "✌️"
This reverts commit 96ab0e7b4caee288b605ba2799878f89d0e67429.
2018-06-11 01:07:34 +09:00
syuilo
fff1f321a9 ✌️ 2018-06-11 00:27:16 +09:00