Commit graph

1636 commits

Author SHA1 Message Date
syuilo 127c126ef5 4.3.1 2018-06-19 08:03:39 +09:00
syuilo f7959c073f 4.3.0 2018-06-18 17:25:45 +09:00
syuilo fe319a529f 4.2.0 2018-06-18 14:54:09 +09:00
syuilo 91bea1f6c7 ✌️ 2018-06-18 14:52:36 +09:00
rinsuki daa409cd82 [noImplicitAny: true] src/services/drive 2018-06-17 20:04:19 +09:00
rinsuki 8c40917cc2 [noImplicitAny: true] src/text 2018-06-17 19:55:39 +09:00
rinsuki f19075c50a upgrade font-awesome packages 2018-06-17 17:57:50 +09:00
syuilo 0460cdedd7 inputのsuffixがはみ出す問題を修正 2018-06-17 11:42:23 +09:00
syuilo 73f5bf69e8 4.1.0 2018-06-17 11:33:24 +09:00
syuilo 2fcebdd281 cors 2018-06-17 11:23:18 +09:00
syuilo 11cf82c6a4 4.0.0 2018-06-17 08:15:57 +09:00
syuilo f6d9a7e7c3 3.1.1 2018-06-16 19:45:47 +09:00
syuilo e55a254353 3.1.0 2018-06-16 18:43:25 +09:00
syuilo 555a0f276c MisskeyShare 2018-06-16 18:42:49 +09:00
syuilo 792632d726 3.0.1 2018-06-16 15:23:44 +09:00
syuilo cd8bfca29c npm install --only=dev するのが既存のドキュメントと互換性が無いため戻す 2018-06-16 13:10:17 +09:00
syuilo e11f547308 #1715 2018-06-16 10:40:53 +09:00
syuilo f164661ef2 2.42.0 2018-06-16 07:40:39 +09:00
syuilo 7c596be638 2.41.1 2018-06-15 19:58:15 +09:00
syuilo 392cb1ba89 2.41.0 2018-06-15 19:57:13 +09:00
syuilo ca668898f4 2.40.1 2018-06-15 09:57:06 +09:00
syuilo 7f7d7edc7f 2.40.0 2018-06-15 09:53:53 +09:00
syuilo 3ebaf83ce0 2.39.0 2018-06-15 08:00:14 +09:00
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