Skip to content

Commit ae5a487

Browse files
committed
Rearrange docs, bump version to 0.3.2
1 parent 3e4bee1 commit ae5a487

8 files changed

Lines changed: 62 additions & 53 deletions

File tree

.github/workflows/npm-publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,3 @@ jobs:
2121
node-version: "24"
2222
registry-url: "https://registry.npmjs.org"
2323
- run: npm publish --provenance --access public
24-
working-directory: src

src/CHANGELOG.md renamed to CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Changelog
22

3+
## 0.3.2
4+
5+
- Scoped package name: `@bgforge/iets`.
6+
37
## 0.3.1
48

5-
- Package renamed from `ielib` to `@bgforge/iets`.
9+
- Package renamed from `ielib` to `iets`.
610
- Repository split from [BGforge-MLS-IElib](https://github.com/BGforgeNet/BGforge-MLS-IElib) into standalone [iets](https://github.com/BGforgeNet/iets).
711

812
## 0.3.0

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 BGforge
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

src/README.md renamed to docs/development.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
## IElib
1+
## Development
22

3-
Typescript bindings for Infinity Engine BAF.
3+
Development conventions and notes.
44

55
### Type branding
66

package.json

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,27 @@
11
{
2-
"name": "iets-dev",
3-
"version": "1.0.0",
4-
"private": true,
2+
"name": "@bgforge/iets",
3+
"version": "0.3.2",
54
"type": "module",
5+
"exports": {
6+
".": "./src/index.ts",
7+
"./bg2": "./src/bg2/index.ts"
8+
},
9+
"files": ["src"],
610
"scripts": {
711
"lint": "eslint scripts/",
812
"typecheck": "tsc --noEmit && tsc --noEmit -p src/tsconfig.json",
913
"ts-update": "tsx scripts/ts-update.ts external/iesdp/_data/actions src/bg2/actions.d.ts external/iesdp/scripting/triggers/bg2triggers.htm src/bg2/triggers.d.ts",
1014
"test": "vitest run"
1115
},
12-
"dependencies": {
13-
"js-yaml": "^4.1.1",
14-
"jsdom": "^25.0.1",
15-
"tsx": "^4.21.0",
16-
"yargs": "^17.7.2"
16+
"keywords": [
17+
"Infinity Engine",
18+
"Baldur's Gate",
19+
"WeiDU"
20+
],
21+
"license": "MIT",
22+
"repository": {
23+
"type": "git",
24+
"url": "https://github.com/BGforgeNet/iets"
1725
},
1826
"devDependencies": {
1927
"@eslint/js": "^9.39.2",
@@ -22,8 +30,12 @@
2230
"@types/node": "^22.19.3",
2331
"@types/yargs": "^17.0.35",
2432
"eslint": "^9.39.2",
33+
"js-yaml": "^4.1.1",
34+
"jsdom": "^25.0.1",
35+
"tsx": "^4.21.0",
2536
"typescript": "^5.7.3",
2637
"typescript-eslint": "^8.54.0",
27-
"vitest": "^4.0.18"
38+
"vitest": "^4.0.18",
39+
"yargs": "^17.7.2"
2840
}
29-
}
41+
}

pnpm-lock.yaml

Lines changed: 12 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/package.json

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)