Skip to content

Commit

Permalink
Update build process
Browse files Browse the repository at this point in the history
  • Loading branch information
thekevinscott committed Mar 20, 2024
1 parent 854ebbd commit 62db4ad
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ jobs:
- name: Install dependencies
run: pnpm install

- name: Build package
run: pnpm build

- run: pnpm publish --no-git-checks
working-directory: ./packages/contortionist
env:
Expand Down
4 changes: 2 additions & 2 deletions packages/contortionist/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.wireit
dist
node_modules
env
.wireit
node_modules
10 changes: 10 additions & 0 deletions packages/contortionist/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
src
.github
dev
node_modules
.wireit
env
rollup.config.js
tsconfig.json
tsconfig.test.json
vitest.config.ts
6 changes: 2 additions & 4 deletions packages/contortionist/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
{
"name": "contortionist",
"type": "module",
"version": "0.0.2",
"version": "0.0.3",
"main": "./src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/thekevinscott/contortionist.git"
},
"exports": {
".": {
"import": "./src/index.ts"
}
".": "./dist/index.js"
},
"scripts": {
"test": "wireit",
Expand Down

0 comments on commit 62db4ad

Please sign in to comment.