0
0

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 1 year has passed since last update.

GitHub Packages で作ったライブラリをローカルでテストする💪

Last updated at Posted at 2023-01-20

やりたいこと

以下で作ったライブラリに機能を追加してテストをしたい😃

やること一覧

  1. ライブラリに機能を追加する
  2. コンパイルする
  3. ローカルパッケージをインストール

ライブラリに機能を追加する

index.ts
export { func } from './features/filename';
export { funcNew } from './features/filename';

コンパイルする

機能の追加や修正をしたら必ずコンパイルしましょう。
package.json に scripts に定義していると思うのでそちらを使ってください。

$ tsc

ローカルパッケージをインストール

ライブラリを使用しているプロジェクトでローカルパッケージをインストールします。

$ npm install /{テストしたいライブラリのパス}/carmo-kintone-sdk

これでテストできるようになりました🤗

参考

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?