Skip to content

Commit 000c31e

Browse files
cyjakeCopilot
andauthored
refactor: typed AbstractBone, Bone, and Spell (#453)
* refactor: typed AbstractBone, Bone, and Spell * refactor: src/adapters/sequelize.ts (#454) * refactor: boost test coverage * Fix getter/setter formatting in AbstractBone.loadAttribute (#455) * Initial plan * fix: correct getter and setter formatting in abstract_bone.ts Co-authored-by: cyjake <252317+cyjake@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: cyjake <252317+cyjake@users.noreply.github.com> --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
1 parent c97848d commit 000c31e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+3451
-3475
lines changed

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"jsdoc": "rm -rf docs/api && jsdoc -c .jsdoc.json -d docs/api -t node_modules/@cara/minami",
1515
"clean": "tsc -b --clean",
1616
"lint-staged": "lint-staged",
17-
"copy-dts": "mkdir -p lib && cd src && rsync -R ./**/*.d.ts ./*.d.ts ../lib && cd -",
18-
"copy-dts:browser": "mkdir -p dist && cd src && rsync -R ./**/*.d.ts ./*.d.ts ../dist && cd -",
17+
"copy-dts": "mkdir -p lib && cd src && rsync -R ./**/*.d.ts ../lib && cd -",
18+
"copy-dts:browser": "mkdir -p dist && cd src && rsync -R ./**/*.d.ts ../dist && cd -",
1919
"prepack": "tsc && npm run copy-dts",
2020
"prepack:browser": "rm -rf dist && tsc -p tsconfig.browser.json && npm run copy-dts:browser",
2121
"prepublishOnly": "npm run prepack && npm run prepack:browser",
@@ -31,6 +31,7 @@
3131
"test:sqljs": "./test/start.sh test/integration/sqljs.test.js",
3232
"test:custom": "./test/start.sh test/integration/custom.test.js",
3333
"test:sqlcipher": "./test/start.sh test/integration/sqlcipher.test.js",
34+
"test:file": "./test/start.sh",
3435
"test:dts": "./test/start.sh dts",
3536
"test:coverage": "nyc ./test/start.sh && nyc report --reporter=lcov",
3637
"lint": "eslint ./",

0 commit comments

Comments
 (0)