Skip to content

Commit

Permalink
fix: building before publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
Akronae committed May 25, 2024
1 parent 49e7c8b commit 7c1d1e1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- run: yarn
- run: yarn build
- run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
15 changes: 14 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-exception-handling",
"version": "1.0.0",
"version": "1.0.2",
"description": "💣 Lints unhandled functions that might throw errors. For JavaScript/TypeScript eslint.",
"author": {
"email": "alexandre@daubricourt.com",
Expand All @@ -10,6 +10,16 @@
"type": "git",
"url": "https://github.com/Akronae/eslint-plugin-exception-handling.git"
},
"keywords": [
"eslint",
"plugin",
"exception",
"handling",
"error",
"throw",
"try",
"catch"
],
"license": "MIT",
"type": "module",
"engines": {
Expand All @@ -31,6 +41,9 @@
"imports": {
"@": "./"
},
"files": [
"dist"
],
"scripts": {
"build": "pkgroll",
"docs": "yarn build && eslint-doc-generator --init-rule-docs"
Expand Down

0 comments on commit 7c1d1e1

Please sign in to comment.