@nerd-bible/valio 0.1.3 → 0.1.4

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.
@@ -23,5 +23,6 @@ jobs:
23
23
  registry-url: "https://registry.npmjs.org"
24
24
  - run: npm install
25
25
  - run: npm test
26
+ - run: npm run build
26
27
  - run: npx -p @nerd-bible/config pkgWrite
27
28
  - run: npm publish --verbose
package/package.json CHANGED
@@ -23,7 +23,7 @@
23
23
  "expect": "^30.2.0",
24
24
  "typescript": "^5.9.3"
25
25
  },
26
- "version": "0.1.3",
26
+ "version": "0.1.4",
27
27
  "repository": {
28
28
  "url": "https://github.com/nerd-bible/valio"
29
29
  }
@@ -1,4 +1,9 @@
1
1
  {
2
2
  "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "declarationMap": true,
6
+ "sourceMap": true
7
+ },
3
8
  "exclude": ["${configDir}/src/**/*.test.ts"]
4
9
  }