@markw65/prettier-plugin-monkeyc 1.0.48 → 1.0.49

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 (2) hide show
  1. package/README.md +4 -1
  2. package/package.json +3 -5
package/README.md CHANGED
@@ -345,4 +345,7 @@ Accept and fix a few more illegal programs
345
345
  - Upgrade all the dev dependencies, including typescript.
346
346
 
347
347
  #### 1.0.48
348
- - No changes in functionality, but switch from webpack to esbuild. I had been meaning to do that anyway, but webpack's minifier started breaking the code (the published 1.0.47 is unusable as a result).
348
+ - No changes in functionality, but switch from webpack to esbuild. I had been meaning to do that anyway, but webpack's minifier started breaking the code (the published 1.0.47 is unusable as a result).
349
+
350
+ #### 1.0.49
351
+ - No changes in functionality. esbuild was accidentally added as a dependency, rather than a dev dependency.
package/package.json CHANGED
@@ -2,6 +2,7 @@
2
2
  "type": "commonjs",
3
3
  "devDependencies": {
4
4
  "@types/prettier": "^2.6.1",
5
+ "esbuild": "^0.17.16",
5
6
  "eslint": "^8.10.0",
6
7
  "globby": "^13.1.1",
7
8
  "peggy": "^3.0.2",
@@ -23,7 +24,7 @@
23
24
  "prepack": "npm run build-release"
24
25
  },
25
26
  "name": "@markw65/prettier-plugin-monkeyc",
26
- "version": "1.0.48",
27
+ "version": "1.0.49",
27
28
  "description": "A prettier plugin for Garmin monkey-c",
28
29
  "main": "build/prettier-plugin-monkeyc.cjs",
29
30
  "types": "build/prettier-plugin-monkeyc.d.ts",
@@ -44,8 +45,5 @@
44
45
  "bugs": {
45
46
  "url": "https://github.com/markw65/prettier-plugin-monkeyc/issues"
46
47
  },
47
- "homepage": "https://github.com/markw65/prettier-plugin-monkeyc#readme",
48
- "dependencies": {
49
- "esbuild": "^0.17.16"
50
- }
48
+ "homepage": "https://github.com/markw65/prettier-plugin-monkeyc#readme"
51
49
  }