@libria/scaffold-plugin-ts-lib 0.0.1 → 0.0.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.
@@ -1 +1 @@
1
- af0da0b1616a134a27f1dade7e24291d5aff575a2f023e12a1d63524155fd13d
1
+ c2c30be375729b13a8b70a6b5592537c9b3ecba4722711c505e9be922177acec
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libria/scaffold-plugin-ts-lib",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Typescript library template for @libria/scaffold",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "homepage": "https://github.com/LibriaForge/scaffold-starters#readme",
33
33
  "dependencies": {
34
- "@libria/plugin-loader": "^2.0.0-alpha",
34
+ "@libria/plugin-loader": "^2.0.0",
35
35
  "@libria/scaffold-core": "^0.3.1",
36
36
  "fs-extra": "^11.3.3"
37
37
  }
@@ -18,8 +18,9 @@
18
18
  },
19
19
  "type": "module",
20
20
  "scripts": {
21
- "build": "cross-env NODE_ENV=production tsdown",
21
+ "build": "npm run typecheck && cross-env NODE_ENV=production tsdown",
22
22
  "build:dev": "tsdown",
23
+ "typecheck": "tsc --noEmit",
23
24
  "test": "vitest",
24
25
  "lint": "eslint . --ext .ts",
25
26
  "lint:fix": "eslint . --ext .ts --fix",