@raketa-cloud/admin-starter-template 1.2.1 → 1.3.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.
@@ -1,3 +1,3 @@
1
1
  #!/bin/bash
2
2
 
3
- npm run format:check && npm run lint
3
+ npm run format:check && npm run lint && npm run test
package/jest.config.js ADDED
@@ -0,0 +1,28 @@
1
+ /** @type {import('jest').Config} */
2
+ const config = {
3
+ collectCoverageFrom: [
4
+ "**/*.{js,jsx}",
5
+ "!**/*.config.js",
6
+ "!**/node_modules/**",
7
+ "!**/vendor/**",
8
+ "!**/cloud/**",
9
+ "!**/coverage/**",
10
+ "!**/config/**",
11
+ "!**/routes/**",
12
+ "!**/app.js",
13
+ "!**/debugRoutes.js",
14
+ "!**/getConfig.js",
15
+ "!**/index.js",
16
+ ],
17
+ coverageThreshold: {
18
+ global: {
19
+ statements: 97,
20
+ branches: 93,
21
+ functions: 95,
22
+ lines: 97,
23
+ },
24
+ },
25
+ transformIgnorePatterns: ["node_modules/(?!@raketa-cloud/admin)"],
26
+ };
27
+
28
+ module.exports = config;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raketa-cloud/admin-starter-template",
3
- "version": "1.2.1",
3
+ "version": "1.3.0",
4
4
  "files": [
5
5
  "*"
6
6
  ],
@@ -17,7 +17,7 @@
17
17
  "dependencies": {
18
18
  "@biomejs/biome": "1.8.0",
19
19
  "@hono/node-server": "1.11.2",
20
- "@raketa-cloud/admin": "1.0.2",
20
+ "@raketa-cloud/admin": "1.1.0",
21
21
  "graphql-request": "7.1.0",
22
22
  "hono": "4.6.2",
23
23
  "prettier": "^3.3.1"