@datapos/datapos-shared 0.3.59 → 0.3.62

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 +0 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/@datapos/datapos-shared.svg)](https://www.npmjs.com/package/@datapos/datapos-shared)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](./LICENSE)
5
- [![Build Status](https://img.shields.io/badge/build-passing-brightgreen.svg)](#)
6
5
 
7
6
  A TypeScript library containing common declarations and utilities used across other Data Positioning repositories.
8
7
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@datapos/datapos-shared",
3
3
  "license": "MIT",
4
4
  "private": false,
5
- "version": "0.3.59",
5
+ "version": "0.3.62",
6
6
  "type": "module",
7
7
  "files": [
8
8
  "dist"
@@ -35,12 +35,12 @@
35
35
  },
36
36
  "scripts": {
37
37
  "audit": "npm audit",
38
- "build": "vite build",
39
- "bumpVersion": "node -e \"require('@datapos/datapos-development').bumpVersion()\"",
38
+ "build": "npx vite build",
39
+ "bumpVersion": "node -e \"import('@datapos/datapos-development').then(m => m.bumpVersion())\"",
40
40
  "check": "npm outdated; npm-check-updates -i && retire",
41
41
  "document": "license-report --only=prod,peer > LICENSES.json && license-report-check --source ./LICENSES.json --allowed 'MIT' --allowed 'n/a' --allowed 'Apache-2.0' --output=table",
42
- "format": "prettier --write *.ts",
43
- "lint": "eslint",
42
+ "format": "npx prettier --write *.ts",
43
+ "lint": "npx eslint src/**/*.ts",
44
44
  "publishToNPM": "npm publish --access public",
45
45
  "release": "npm run syncWithGitHub && npm run build && npm run publishToNPM",
46
46
  "syncWithGitHub": "npm run bumpVersion && node -e \"require('@datapos/datapos-development').syncWithGitHub()\"",