Fix tools/set-import/index.js (#9865)

The `package.json` links to `build/` in various properties even though
all of those files are in the same flat directory and not in `build/`
This commit is contained in:
Waleed Hassan 2023-10-30 20:59:33 +03:00 committed by GitHub
parent 140fcba5ef
commit 7e37e510c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -94,9 +94,9 @@ const SETS = path.resolve(__dirname, 'sets');
"name": "@smogon/sets",
"version": version,
"description": "Set data imported from Smogon.com and used on Pokémon Showdown",
"main": "build/index.js",
"unpkg": "build/index.js",
"types": "build/index.d.ts",
"main": "index.js",
"unpkg": "index.js",
"types": "index.d.ts",
"repository": "github:smogon/sets",
"publishConfig": {
"access": "public",