Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kphrx/nico-zenza
Rewrite ZenzaWatch
https://github.com/kphrx/nico-zenza
Last synced: about 2 months ago
JSON representation
Rewrite ZenzaWatch
- Host: GitHub
- URL: https://github.com/kphrx/nico-zenza
- Owner: kphrx
- License: wtfpl
- Created: 2022-04-04T05:38:35.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-29T05:01:22.000Z (8 months ago)
- Last Synced: 2024-05-01T16:37:22.756Z (8 months ago)
- Language: TypeScript
- Homepage: http://kpherox.dev/nico-zenza/
- Size: 881 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.adoc
- License: license.txt
Awesome Lists containing this project
README
= ZenzaWatch
を TypeScript で書き直すやつ
== Installation
将来的に greasyfork.org にアップロードするかも== Development
[source,bash]
----
# 依存関係のインストールとgit hooksの追加
npm install# development mode で UserScript 生成
npm run build:dev
# production mode で UserScript 生成
npm run build:prod# テスト
npm test
# ファイル変更を検知してテスト
npm run test:watch# TypeScript の型チェック
npm run compile && npm run compile -- --clean# コードフォーマットチェック
npm run lint
# コード整形
npm run lint:fix
----