Skip to content

Commit bdc349d

Browse files
committed
v0.0.1
1 parent 1324cdd commit bdc349d

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"build:plugin": "cd ./ecmacraft && mvn clean package -DskipTests",
88
"dev": "turbo run dev",
99
"lint": "turbo run lint",
10-
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
10+
"format": "prettier --write \"{apps,packages,scripts}/**/*.{ts,tsx,md}\"",
1111
"check-types": "turbo run check-types",
1212
"generate-dts": "python ./scripts/jar2dts.py ./target/spigot-api.jar --out ./packages/types/src --single --emit-runtime-value && node ./scripts/extract-events.ts",
1313
"test-server": "cd test-server && node ../scripts/pre-server.ts && java -Xmx2048M -Xms2048M -jar server.jar nogui"

packages/ecmacraft/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ecmacraft",
3-
"version": "0.0.0",
3+
"version": "0.0.1",
44
"description": "Create minecraft plugins with TypeScript",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

packages/types/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# `@ecmacraft/types`
2+
3+
This package contains TypeScript type definitions for the Spigot API, which is used for Minecraft plugin development.
4+
5+
## Installation
6+
7+
To install the `@ecmacraft/types` package, run the following command in your project directory:
8+
9+
```bash
10+
npm install @ecmacraft/types
11+
```

packages/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ecmacraft/types",
3-
"version": "0.0.0",
3+
"version": "0.0.1",
44
"description": "TypeScript definitions for Spigot API",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)