label-printer 0.2.1 → 0.2.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 +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "label-printer",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "js package providing an abstraction over different thermal printer languages",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -17,7 +17,6 @@
17
17
  "license": "ISC",
18
18
  "repository": "https://github.com/kemkriszt/raw-thermal-print.git",
19
19
  "devDependencies": {
20
- "@changesets/cli": "^2.27.1",
21
20
  "@types/jest": "^29.5.11",
22
21
  "jest": "^29.7.0",
23
22
  "ts-jest": "^29.1.1",
@@ -27,6 +26,7 @@
27
26
  "typescript": "^5.3.3"
28
27
  },
29
28
  "dependencies": {
29
+ "@changesets/cli": "^2.27.1",
30
30
  "@types/w3c-web-usb": "^1.0.10",
31
31
  "image-pixels": "^2.2.2",
32
32
  "usb": "^2.11.0"
@@ -34,6 +34,7 @@
34
34
  "scripts": {
35
35
  "build": "tsup",
36
36
  "examples": "npx ts-node -r tsconfig-paths/register src/examples",
37
+ "release": "pnpm install && pnpm build && pnpm changeset publish",
37
38
  "test": "jest",
38
39
  "test-watch": "jest --watch"
39
40
  }