@velocitycareerlabs/vc-renderer-sample 1.26.0-dev-build.1cce50406 → 1.26.0-dev-build.1a6aed3a4

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.
package/.eslintrc.js CHANGED
@@ -12,7 +12,7 @@ module.exports = {
12
12
  ].concat(eslintConfig.extends),
13
13
  parser: '@typescript-eslint/parser',
14
14
  parserOptions: {
15
- project: './tsconfig.json',
15
+ project: ['./tsconfig.json', './tsconfig.test.json'],
16
16
  tsconfigRootDir: __dirname,
17
17
  ...eslintConfig.parserOptions,
18
18
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@velocitycareerlabs/vc-renderer-sample",
3
- "version": "1.26.0-dev-build.1cce50406",
3
+ "version": "1.26.0-dev-build.1a6aed3a4",
4
4
  "description": "VC Renderer Sample",
5
5
  "repository": "https://github.com/velocitycareerlabs/packages",
6
6
  "publishConfig": {
@@ -20,24 +20,29 @@
20
20
  "@types/node": "^16.18.119",
21
21
  "@types/react": "18.3.24",
22
22
  "@types/react-dom": "18.3.7",
23
- "@velocitycareerlabs/vc-renderer": "1.26.0-dev-build.1cce50406",
23
+ "@velocitycareerlabs/vc-renderer": "1.26.0-dev-build.1a6aed3a4",
24
24
  "react": "18.3.1",
25
25
  "react-dom": "^18.3.1",
26
26
  "react-scripts": "5.0.1",
27
27
  "typescript": "^5.6.3",
28
28
  "web-vitals": "^2.1.4"
29
29
  },
30
+ "devDependencies": {
31
+ "ts-node": "10.9.2"
32
+ },
30
33
  "resolutions": {
31
34
  "react": "18.3.1",
32
35
  "react-dom": "18.3.1",
33
36
  "typescript": "^5.6.3"
34
37
  },
35
38
  "scripts": {
36
- "start": "react-scripts start",
37
39
  "build": "react-scripts build",
38
- "test": "react-scripts test",
39
40
  "eject": "react-scripts eject",
40
- "lint": "eslint . --ext .js,.ts,.tsx"
41
+ "lint": "eslint . --ext .js,.ts,.tsx",
42
+ "lint:fix": "eslint . --ext .js,.ts,.tsx --fix",
43
+ "start": "react-scripts start",
44
+ "test:ci": "ts-node --project ./tsconfig.test.json ./test/ignore.ts",
45
+ "test": "ts-node --project ./tsconfig.test.json ./test/ignore.ts"
41
46
  },
42
47
  "eslintConfig": {
43
48
  "extends": [
@@ -58,5 +63,5 @@
58
63
  "last 1 safari version"
59
64
  ]
60
65
  },
61
- "gitHead": "58afda1bd7fef44c773b88a1fd6685f2ba006c3a"
66
+ "gitHead": "ff57e717f15ed96719d3d3473902497913ee1cf5"
62
67
  }
package/test/ignore.ts ADDED
File without changes