Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hiimjasmine00 committed May 2, 2023
1 parent 10de531 commit 3812205
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true

[{{cjs,esm,dist}/*.js,pnpm-lock.yaml}]
[{{cjs,dist,esm}/*.js,pnpm-lock.yaml}]
indent_size = 2
trim_trailing_whitespace = false
insert_final_newline = false
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cjs
esm
dist
esm
types
docs
node_modules
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.git
.vscode
cjs
esm
dist
esm
types
node_modules
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ import * as crypchar from "crypchar";
import { add, subtract, xor, not } from "crypchar";
import xor from "crypchar/xor";
```
```html
<script src="https://cdn.jsdelivr.net/npm/crypchar/dist/crypchar.js"></script>
```
```html
<script src="https://cdn.jsdelivr.net/npm/crypchar/dist/crypchar.min.js"></script>
```

## Usage
```js
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
},
"files": [
"cjs",
"dist",
"esm",
"types"
],
Expand Down Expand Up @@ -58,7 +59,7 @@
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.0",
"@types/node": "^18.16.3",
"esbuild": "^0.17.18",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
Expand Down
14 changes: 7 additions & 7 deletions pnpm-lock.yaml

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

0 comments on commit 3812205

Please sign in to comment.