@larvit/log 1.6.1 → 1.6.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 +2 -2
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@larvit/log",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "packageManager": "yarn@4.6.0",
7
7
  "scripts": {
8
+ "build-and-publish": "npm run build && npm publish",
8
9
  "build": "rm -f index.js index.d.ts index.js.map && tsc && uglifyjs index.js -o index.js",
9
10
  "lint-fix": "eslint --fix index.ts test.ts",
10
11
  "lint": "eslint index.ts test.ts",
11
- "publish": "npm run build && npm publish",
12
12
  "test-unit": "node --loader ts-node/esm test.ts | tap-spec",
13
13
  "test": "yarn test-unit && yarn lint"
14
14
  },