@superblocksteam/shared 0.9376.0 → 0.9377.0

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 +11 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superblocksteam/shared",
3
- "version": "0.9376.0",
3
+ "version": "0.9377.0",
4
4
  "description": "Superblocks Shared Resources",
5
5
  "repository": "https://github.com/superblocksteam/shared.git",
6
6
  "license": "Superblocks Community Software License",
@@ -57,6 +57,7 @@
57
57
  "chokidar-cli": "3.0.0",
58
58
  "eslint": "8.57.1",
59
59
  "eslint-config-prettier": "9.1.0",
60
+ "eslint-config-turbo": "^2.5.5",
60
61
  "eslint-import-resolver-typescript": "3.7.0",
61
62
  "eslint-plugin-import": "2.31.0",
62
63
  "eslint-plugin-prettier": "5.2.1",
@@ -64,7 +65,6 @@
64
65
  "jest-junit": "^16.0.0",
65
66
  "prettier": "^3.5.3",
66
67
  "prettier-plugin-pkg": "^0.19.0",
67
- "rimraf": "^5.0.0",
68
68
  "ts-json-schema-generator": "^1.0.0",
69
69
  "typescript": "^4.9.5"
70
70
  },
@@ -78,15 +78,16 @@
78
78
  ]
79
79
  },
80
80
  "scripts": {
81
- "build": "tsc && tsc -p tsconfig.browser.json && ./fixup-dists.sh",
81
+ "build": "tsc --build && tsc --build tsconfig.browser.json && ./fixup-dists.sh",
82
82
  "check": "npm run typecheck && npm run lint",
83
- "clean": "rimraf ./dist ./dist-esm *tsbuildinfo",
84
- "lint": "eslint . --ext ts --max-warnings 0 --cache --cache-strategy content --cache-location ~/.cache/eslint/",
85
- "lint:fix": "eslint . --ext ts --fix --cache --cache-strategy content --cache-location ~/.cache/eslint/",
86
- "lint:precommit": "eslint --ext ts --fix --cache --cache-strategy content --cache-location ~/.cache/eslint/",
87
- "pre-commit": "tsc && lint-staged",
88
- "start": "chokidar '**/*.ts' -c 'npm run build'",
83
+ "clean": "premove ./dist ./dist-esm *tsbuildinfo",
84
+ "dev": "chokidar \"**/*.ts\" -c \"npm run build\"",
85
+ "lint": "eslint . --ext ts --max-warnings 0",
86
+ "lint:fix": "eslint . --ext ts --fix",
87
+ "lint:precommit": "eslint --ext ts --fix",
88
+ "pre-commit": "tsc --noEmit && lint-staged",
89
+ "start": "chokidar \"**/*.ts\" -c \"npm run build\"",
89
90
  "test": "jest",
90
- "typecheck": "tsc"
91
+ "typecheck": "tsc --noEmit"
91
92
  }
92
93
  }