2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

clocで *.spec.ts と */node_modules/* を除いたプログラム規模算出

Posted at

動機

Angular CLIで作成したプロジェクトの開発規模・ステップ数を計測したくて、やってみました。

前提

以下の環境を前提とします。
LinuxやMacでも大丈夫だと思います。

除外対象

以下フォルダ・ファイルを除外します。

  • */node_modules
    • /**/ *.spec.ts

以下でとりあえずは絞り込めました。
もう少しアレンジしてもいいかもしれませんね。

cloc angular-project --exclude-dir=node_modules --not-match-f=^.+\.spec\.ts$ --by-file
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?