Skip to content

Commit

Permalink
Merge pull request #3 from trojs/feature/first-version
Browse files Browse the repository at this point in the history
Feature/first version
  • Loading branch information
w3nl authored Jul 3, 2024
2 parents d0889bf + eb5af42 commit 9183d84
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ Types:
boundary: string;
}
```
See also the form-data.d.ts file
See also the src/types.d.ts file
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@trojs/formdata-parser",
"version": "0.1.0",
"description": "TODO",
"version": "0.1.1",
"description": "Parse the form data",
"type": "module",
"main": "src/form-data.js",
"files": [
"src/form-data.js",
"src/form-data.d.ts"
"src/types.d.ts"
],
"scripts": {
"lint": "eslint --config eslint.config.js",
Expand Down
2 changes: 1 addition & 1 deletion src/form-data.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/**
* @typedef {import('./form-data.js').FormData} FormData
* @typedef {import('./types.d.ts').FormData} FormData
*/

/**
Expand Down
File renamed without changes.

0 comments on commit 9183d84

Please sign in to comment.