Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "js-sdsl", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "javascript standard data structure library", | ||
@@ -35,3 +35,4 @@ "main": "./dist/cjs/index.js", | ||
"deploy": "yarn build:umd:min && gh-pages -d dist/umd", | ||
"publish": "yarn build && npm publish" | ||
"publish": "yarn build && npm publish", | ||
"publish:readme": "npm version patch && npm publish" | ||
}, | ||
@@ -38,0 +39,0 @@ "husky": { |
@@ -26,3 +26,3 @@ # [js-sdsl](https://github.com/ZLY201/js-sdsl) | ||
Or install js-sdsl using npm **(It will become soon)** | ||
Or install js-sdsl using npm | ||
@@ -35,4 +35,18 @@ ```bash | ||
Please see API documents or see `src/test.ts` to find usage. | ||
To help you have a better use, we provide this API document (**it will become soon**). | ||
### For Browser | ||
```html | ||
<!-- you can download the file locally and import it or import it dynamically by using url. --> | ||
<script src="https://zly201.github.io/js-sdsl/js-sdsl.min.js"></script> | ||
<script> | ||
const { Vector } = SDSL; | ||
const myVector = new Vector(); | ||
// you code here... | ||
</script> | ||
``` | ||
### Other | ||
Please see `src/test.ts` to find usage. | ||
## Build by source code | ||
@@ -39,0 +53,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
67756
57