Skip to content

Commit

Permalink
chore(cleanup): add mac files to gitignore (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
faris-imi authored Oct 31, 2023
1 parent 54f6dc2 commit 6999541
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ dist
# TernJS port file
.tern-port

# MacOS
.DS_Store
**/.DS_Store

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

Expand Down
Binary file removed demo/.DS_Store
Binary file not shown.
Binary file removed lib/.DS_Store
Binary file not shown.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "@hcaptcha/loader",
"description": "This is a JavaScript library to easily configure the loading of the hCaptcha JS client SDK with built-in error handling.",
"version": "1.0.6",
"version": "1.0.7",
"author": "hCaptcha team and contributors",
"license": "MIT",
"keywords": [
"hcaptcha",
"captcha"
],
"type": "module",
"main": "dist/index.mjs",
"types": "dist/types/src/index.d.ts",
"main": "./dist/index.mjs",
"types": "./dist/types/src/index.d.ts",
"exports": {
"import": "dist/index.mjs",
"require": "dist/index.cjs"
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"files": [
"README.md",
Expand Down

0 comments on commit 6999541

Please sign in to comment.