Commit graph

1713 commits

Author SHA1 Message Date
syuilo e6e02ece89 wip 2018-06-14 06:29:01 +09:00
syuilo 9059c149dd 2.38.3 2018-06-13 05:40:27 +09:00
syuilo 89105f5641 2.38.2 2018-06-13 05:25:27 +09:00
syuilo e635a87628 2.38.1 2018-06-13 05:16:53 +09:00
syuilo 4d914f5c0a 2.38.0 2018-06-12 19:07:36 +09:00
syuilo f968d05ea0 2.37.7 2018-06-12 09:10:52 +09:00
syuilo 460147fea2 2.37.6 2018-06-12 08:59:36 +09:00
syuilo 399eb60809 2.37.5 2018-06-12 02:47:17 +09:00
syuilo 2fcc3bb1ea 2.37.4 2018-06-12 02:19:00 +09:00
syuilo 91db24fcfc 2.37.3 2018-06-11 14:16:46 +09:00
syuilo 36215d50bd 2.37.2 2018-06-11 13:48:07 +09:00
syuilo c0a3ae2612 2.37.1 2018-06-11 11:45:27 +09:00
syuilo df9cb7cf6e 2.37.0 2018-06-11 11:44:26 +09:00
otofune 7518e30dcf 🆙 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 f499630c2b 2.36.1 2018-06-11 01:28:45 +09:00
syuilo 20ec4104c6 2.36.0 2018-06-10 12:22:48 +09:00
syuilo 0360337df9 2.35.3 2018-06-10 08:42:29 +09:00
syuilo c8dd8341ca 2.35.2 2018-06-10 03:58:12 +09:00
syuilo 7e3bf06db1 2.35.1 2018-06-10 03:31:42 +09:00
syuilo 56df89f8dd 2.35.0 2018-06-10 01:22:44 +09:00
syuilo 72c4ccaee8 Clean up dependencies 2018-06-10 00:41:57 +09:00
syuilo af2d36a3c9 2.34.3 2018-06-09 11:41:22 +09:00
syuilo 773b2aa3d1 2.34.2 2018-06-09 10:16:29 +09:00
syuilo 52db63bca2 2.34.1 2018-06-09 06:28:22 +09:00
syuilo 6e8a1086d8 2.34.0 2018-06-09 04:15:18 +09:00
syuilo c78945436e #1686 2018-06-09 04:14:26 +09:00
syuilo 6eff8fde74 サーバーの統計情報をメモリに記憶するようにするなど 2018-06-09 01:45:25 +09:00
syuilo fe159a13a9 2.33.2 2018-06-08 22:03:24 +09:00
syuilo cc6fa135ac 2.33.1 2018-06-08 21:50:41 +09:00
syuilo 581d1617d8 2.33.0 2018-06-08 21:39:24 +09:00
syuilo 16e446c121 2.32.0 2018-06-08 11:47:33 +09:00
syuilo 3ffd6ff5a2 2.31.0 2018-06-08 08:39:04 +09:00
syuilo fa171f237d 2.30.2 2018-06-08 08:06:19 +09:00
syuilo 0967f23b6e 2.30.1 2018-06-08 05:49:19 +09:00
syuilo 602284d38c 2.30.0 2018-06-08 05:04:56 +09:00
syuilo 44ef60c8a2 2.29.1 2018-06-07 08:48:22 +09:00
syuilo 86b0dfdd33 2.29.0 2018-06-07 06:16:11 +09:00
syuilo 818bc96aab 2.28.0 2018-06-07 05:15:05 +09:00
syuilo 0ac5fdab49 2.27.3 2018-06-07 02:07:00 +09:00
syuilo 8678e30cc8 2.27.2 2018-06-07 01:45:04 +09:00
syuilo c1b320710b 2.27.1 2018-06-06 19:37:15 +09:00
syuilo dc58c9bd2f 2.27.0 2018-06-06 19:24:34 +09:00
syuilo e8edda01a9 2.26.2 2018-06-06 05:29:45 +09:00
syuilo 781fffee42 2.26.1 2018-06-06 05:18:46 +09:00
syuilo 64519a9fd4 2.26.0 2018-06-05 23:22:37 +09:00
syuilo f87981eeee 2.25.2 2018-06-04 19:59:07 +09:00
syuilo 255c07d1ab 2.25.1 2018-06-03 04:51:58 +09:00
syuilo 0aa9201770 2.25.0 2018-06-02 19:23:17 +09:00
syuilo c23bbf81f1 2.24.3 2018-05-30 23:08:26 +09:00
syuilo dd94392317 2.24.2 2018-05-30 05:02:56 +09:00
syuilo 248acaee75 2.24.1 2018-05-30 00:16:03 +09:00
syuilo 854814c226 2.24.0 2018-05-29 23:57:25 +09:00
syuilo d05aee19f2 2.23.2 2018-05-29 21:46:30 +09:00
syuilo 2127bf32c2 2.23.1 2018-05-29 17:11:48 +09:00
syuilo 47a6188097 2.23.0 2018-05-29 15:43:24 +09:00
syuilo 0e7c0fd528 2.22.3 2018-05-29 13:22:29 +09:00
syuilo b375bbc75c 2.22.2 2018-05-29 11:53:59 +09:00
syuilo 281971f4a4 2.22.1 2018-05-29 02:37:31 +09:00
syuilo 9f1385b03a 2.22.0 2018-05-29 02:26:13 +09:00
syuilo 5d82443389 2.21.1 2018-05-28 22:00:29 +09:00
syuilo 0ca2c313ec 2.21.0 2018-05-28 21:45:14 +09:00
syuilo d1dd2d3c18 2.20.1 2018-05-28 15:30:47 +09:00
syuilo b57dd8de40 2.20.0 2018-05-28 15:14:45 +09:00
syuilo ed86218817 2.19.0 2018-05-27 23:20:45 +09:00
syuilo 46a953a9d8 2.18.2 2018-05-27 18:18:51 +09:00
syuilo e477de6dd0 2.18.1 2018-05-27 13:58:35 +09:00
syuilo f8abc8193b 2.18.0 2018-05-27 00:29:31 +09:00
syuilo 5415b67baa Fix bug 2018-05-26 16:04:47 +09:00
syuilo f91a53d893 Update dependencies 🚀 2018-05-26 13:23:58 +09:00
syuilo 07e1882401 2.17.0 2018-05-25 21:21:37 +09:00
syuilo 321841101b 2.16.8 2018-05-24 09:48:30 +09:00
syuilo d92f501b50 2.16.7 2018-05-24 06:22:20 +09:00
syuilo c81a204e0c 2.16.6 2018-05-24 06:21:04 +09:00
syuilo 3e146d5f94 2.16.5 2018-05-24 06:09:24 +09:00
syuilo dae9c4288d 2.16.4 2018-05-23 16:00:08 +09:00
syuilo 1c0cb1ae71 2.16.3 2018-05-23 15:27:31 +09:00
syuilo 81cc6f3104 2.16.2 2018-05-22 18:20:49 +09:00
syuilo 5671f1c6a4 2.16.1 2018-05-22 11:47:23 +09:00
syuilo f3bacae1dc 2.16.0 2018-05-21 21:52:10 +09:00
syuilo aa80fb5d4a 2.15.0 2018-05-21 15:18:27 +09:00
syuilo 9677d1288a 2.14.0 2018-05-21 11:16:17 +09:00
syuilo 9e7b6790fd 2.13.0 2018-05-21 03:21:47 +09:00
syuilo 42c811a523 Refactor 2018-05-21 02:13:39 +09:00
syuilo 684a8531b6 2.12.0 2018-05-20 18:00:29 +09:00
syuilo f044ea7c85 2.11.0 2018-05-20 14:29:45 +09:00
syuilo 7f846f114d Update dependencies 🚀 2018-05-20 14:10:30 +09:00
syuilo 254fbbbc75 [wip] better mobile setting 2018-05-19 20:31:13 +09:00
syuilo 565d61674d Update dependecy 🚀 2018-05-18 16:52:31 +09:00
syuilo e6c4ba8133 Fix bug 2018-05-18 15:42:42 +09:00
syuilo 4c3dccfc0b 2.10.0 2018-05-18 15:32:11 +09:00
syuilo 345084a764 2.9.1 2018-05-18 12:08:26 +09:00
syuilo 0926c92245 2.9.0 2018-05-18 09:52:10 +09:00
syuilo 60b60fda8d
Update package.json 2018-05-18 07:19:13 +09:00
syuilo 605700b98e 2.8.0 2018-05-17 23:54:47 +09:00
syuilo 1e61ea1591 2.7.1 2018-05-17 19:38:50 +09:00
syuilo 90a4fe471d ✌️ 2018-05-17 19:38:20 +09:00
syuilo b2368b04db 2.7.0 2018-05-17 18:33:56 +09:00
syuilo d253df4574 ✌️ 2018-05-17 18:18:45 +09:00
syuilo cf0351225f Update dependencies 🚀 2018-05-17 17:01:07 +09:00
syuilo 12c624fa58 2.6.2 2018-05-14 14:16:56 +09:00
syuilo 26941f62c6 2.6.1 2018-05-14 09:15:49 +09:00
syuilo a858dd4453 2.6.0 2018-05-13 03:17:09 +09:00
syuilo ab4f97ff20 2.5.0 2018-05-07 18:22:44 +09:00
syuilo 0d9857db63 2.5.0-beta1 2018-05-07 17:05:17 +09:00
syuilo b77cbeca22 #1427 2018-05-07 02:54:14 +09:00
syuilo 3f2a7a561e アイコンのレンダリングを改善 2018-05-06 18:04:37 +09:00
syuilo 638a2ab684 2.3.1 2018-05-06 02:08:40 +09:00
syuilo a64817cea1 2.3.0 2018-05-06 01:47:25 +09:00
syuilo 440cf139bb メタ情報をレンダリングするように 2018-05-06 01:34:48 +09:00
syuilo d9cdc1f079 2.2.0 2018-05-04 18:32:13 +09:00
syuilo e37c19fdcd 2.1.4 2018-05-04 18:02:17 +09:00
syuilo 1311db8060 2.1.3 2018-05-04 18:00:02 +09:00
syuilo 8fe6da0cad 2.1.2 2018-05-04 17:41:12 +09:00
syuilo 34345ea8a7 oops 2018-05-04 17:08:41 +09:00
syuilo fc166b7bee oops 2018-05-04 16:56:23 +09:00
syuilo b5acf15877 2.0.0 2018-05-04 16:27:03 +09:00
syuilo abfbb068d7 ✌️ 2018-05-04 13:24:08 +09:00
syuilo 27f90b61e6 1.7.0 2018-05-04 00:20:31 +09:00
syuilo c9a57fe8fe 投稿やメッセージなどに添付されていないドライブのファイルをすべて削除するツールを実装 2018-05-04 00:08:42 +09:00
syuilo 7be88b7816 1.6.0 2018-05-03 20:51:50 +09:00
syuilo f664cf09c0 Update cafy to 8.0.0 🚀 2018-05-02 18:06:16 +09:00
syuilo 17bb34941b 1.5.0 2018-04-29 22:10:10 +09:00
syuilo 5f1b726bab 1.4.0 2018-04-29 18:17:33 +09:00
syuilo 985a105930 1.3.0 2018-04-28 12:05:39 +09:00
syuilo 1cd1c31467 1.2.0 2018-04-28 02:30:27 +09:00
syuilo b694bf1f41 1.1.0 2018-04-27 21:37:00 +09:00
syuilo 0f27b62924 Update dependencies 🚀 2018-04-27 19:12:15 +09:00
syuilo bc8a0083e2 wip 2018-04-26 11:46:42 +09:00
syuilo 1a13c7e0b1 wip 2018-04-24 23:34:18 +09:00
syuilo 7602e8f938 cafy 5.xに移行 2018-04-24 18:13:06 +09:00
syuilo 0b99483ccb サーバーのバージョンとクライアントのバージョンを分けた 2018-04-22 21:32:09 +09:00
syuilo fd01b4d204 v5089 2018-04-22 17:34:56 +09:00
syuilo a57a1d809b v5074 2018-04-21 19:06:59 +09:00
syuilo b77a8af6e3 v5064 2018-04-21 16:07:05 +09:00
syuilo b14d7b45ae Better timeline rendering
Co-Authored-By: tamaina <tamaina@hotmail.co.jp>
2018-04-21 15:37:02 +09:00
syuilo dd509333a3 v5051 2018-04-20 13:39:08 +09:00
syuilo 324477c1c0 v5042 2018-04-20 07:59:13 +09:00
syuilo 25e4cebc0f v5030 2018-04-19 19:00:45 +09:00
syuilo 45b6a6bc54 make logger great again 2018-04-19 18:03:46 +09:00
syuilo a35b5eb279 v5023 2018-04-19 15:06:07 +09:00
syuilo 3ba8a105bb v5018 2018-04-19 12:46:47 +09:00
syuilo d403869945
Merge pull request #1514 from syuilo/greenkeeper/style-loader-0.21.0
Update style-loader to the latest version 🚀
2018-04-19 09:33:04 +09:00
greenkeeper[bot] 1dbd8d14d8 fix(package): update style-loader to version 0.21.0 2018-04-18 23:14:41 +00:00
greenkeeper[bot] 48b698c58a fix(package): update @types/mongodb to version 3.0.15
Closes #1513
2018-04-18 22:35:19 +00:00
syuilo e4eb139d5d Update dependency 🚀 2018-04-18 19:25:15 +09:00
syuilo 7a4500ee86 v5001 2018-04-18 14:54:53 +09:00
syuilo e6edec5b87 Update dependencies 🚀 2018-04-18 14:26:46 +09:00
greenkeeper[bot] 8173267631 fix(package): update mongodb to version 3.0.7 2018-04-18 03:05:28 +00:00
syuilo 88cad94297 v4983 2018-04-17 20:05:32 +09:00
syuilo 3d276ab733 v4970 2018-04-17 15:42:09 +09:00