Comparing version 0.1.0 to 0.1.1
@@ -0,1 +1,5 @@ | ||
## [0.1.1](https://github.com/guillaumearm/curseforge/compare/v0.1.0...v0.1.1) (2021-10-05) | ||
# [0.1.0](https://github.com/guillaumearm/curseforge/compare/v0.0.1...v0.1.0) (2021-10-05) | ||
@@ -2,0 +6,0 @@ |
{ | ||
"name": "curseforge", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "a Curserforge user-friendly API wrapper", | ||
@@ -37,3 +37,4 @@ "author": "Guillaume ARM <trapcodien@gmail.com>", | ||
"push": "git push && git push --tags --no-verify", | ||
"preversion": "yarn run test:all", | ||
"prerelease": "yarn run rebuild", | ||
"preversion": "yarn run clean && yarn run test:all", | ||
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md" | ||
@@ -40,0 +41,0 @@ }, |
@@ -1,1 +0,20 @@ | ||
# a Curserforge user-friendly typescript API wrapper | ||
# a Curserforge user-friendly API wrapper | ||
Warning: This is a WIP project for now, so the implementation and the documentation are not completed yet. | ||
### Installation | ||
```bash | ||
npm install --save curseforge | ||
``` | ||
### Usage | ||
```ts | ||
import * as curseforge from 'curseforge'; | ||
import type { MinecraftVersionInfo } from 'curseforge'; | ||
curseforge.api.MinecraftVersionInfo('1.16.5').then((mcInfo: MinecraftVersionInfo) => { | ||
console.log('=>', mcInfo); | ||
}); | ||
``` |
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
11098
21