@chicowall/grf-loader 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +5 -4
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.0.1",
6
+ "version": "1.0.2",
7
7
  "description": "A loader for GRF files (Ragnarok Online game file)",
8
8
  "main": "./dist/cjs/grf-loader.js",
9
9
  "module": "./dist/esm/grf-loader.js",
@@ -20,7 +20,7 @@
20
20
  "test:browser": "cypress run",
21
21
  "test": "yarn test:node --detectOpenHandles && yarn test:browser",
22
22
  "lint": "tsc --noEmit",
23
- "build": "del dist && rollup -c"
23
+ "build": "rimraf dist && rollup -c"
24
24
  },
25
25
  "author": "Vincent Thibault <vthibault.mobile@gmail.com>",
26
26
  "license": "MIT",
@@ -66,5 +66,6 @@
66
66
  "collectCoverage": true,
67
67
  "coverageDirectory": "coverage",
68
68
  "testEnvironment": "node"
69
- }
70
- }
69
+ },
70
+ "format": "prettier --write 'src/**/*.ts'"
71
+ }