meemup-library 1.0.97 → 1.0.98

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.
@@ -1,4 +1,5 @@
1
1
  export default interface IPointOfSalePrintParts {
2
+ macAddress: string;
2
3
  categories: boolean;
3
4
  channels: boolean;
4
5
  deliveryZones: boolean;
@@ -1,4 +1,5 @@
1
1
  export const initPointOfSalePrintParts = {
2
+ macAddress: "",
2
3
  categories: true,
3
4
  channels: true,
4
5
  deliveryZones: true,
package/package.json CHANGED
@@ -1,20 +1,25 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.0.97",
3
+ "version": "1.0.98",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {
8
- "build": "yarn build:esm && yarn build:cjs",
8
+ "build": "yarn remove:one && yarn remove:two && yarn build:esm && yarn build:cjs",
9
9
  "build:esm": "tsc",
10
10
  "build:cjs": "tsc --module commonjs --outDir src/dist",
11
+ "remove:one": "rimraf dist",
12
+ "remove:two": "rimraf ./src/dist",
11
13
  "test": "echo \"Error: no test specified\" && exit 1"
12
14
  },
13
- "files": ["/dist" ],
15
+ "files": [
16
+ "/dist"
17
+ ],
14
18
  "keywords": [],
15
19
  "author": "",
16
20
  "license": "ISC",
17
21
  "devDependencies": {
22
+ "rimraf": "^5.0.5",
18
23
  "typescript": "^5.2.2"
19
24
  },
20
25
  "dependencies": {