Skip to content

Commit

Permalink
Fix/excluding files from publish (#4)
Browse files Browse the repository at this point in the history
* 🐛 Removed unwanted folders from publish

* 🐛 Removed unwanted folders from publish
  • Loading branch information
mandy8055 authored Oct 23, 2024
1 parent a1bc375 commit 5d52950
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local
coverage/

# Editor directories and files
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
6 changes: 5 additions & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
{
"name": "@msk/data-structures",
"version": "0.1.0",
"version": "0.1.1",
"exports": "./src/mod.ts",
"license": "MIT",
"publish": {
"include": ["src"],
"exclude": ["src/tests", ".github", ".vscode"]
},
"tasks": {
"test": "deno test --allow-none",
"check": "deno check **/*.ts",
Expand Down

0 comments on commit 5d52950

Please sign in to comment.