Skip to content

Commit

Permalink
Merge pull request #19 from tecsoc/main
Browse files Browse the repository at this point in the history
READMEのメンテ(pnpmコマンドの追加、サンプルコードにエラー出力を追加)
  • Loading branch information
mahaker authored Oct 17, 2023
2 parents b64c0df + 4999796 commit e9f5529
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ This is inspired by [gas-webpack-plugin](https://github.com/fossamagna/gas-webpa
npm install -D esbuild-gas-plugin
// or
yarn add -D esbuild-gas-plugin
// or
pnpm add -D esbuild-gas-plugin
```

## Usage
Expand All @@ -32,7 +34,10 @@ require('esbuild').build({
bundle: true,
outfile: 'dist/bundle.js',
plugins: [GasPlugin]
}).catch(() => process.exit(1))
}).catch((e) => {
console.error(e)
process.exit(1)
})
```

and
Expand Down

0 comments on commit e9f5529

Please sign in to comment.