create-unisphere-project 2.11.0 → 3.1.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.
package/dist/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # create-unisphere-project
2
2
 
3
+ ## 3.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - sync templates with @unisphere/nx@4.4.0 migrations
8
+ - add .nx/polygraph and .nx/self-healing to .gitignore
9
+ - add .nx/self-healing to .prettierignore
10
+ - convert jest.config.ts from ESM to CJS syntax
11
+ - add @nx/vitest plugin to nx.json
12
+ - add @nx/vitest package to devDependencies
13
+ - bump @nx/* packages from 22.1.3 to 22.7.1
14
+ - bump @swc/* packages to latest versions
15
+ - pin @unisphere/nx to 4.4.0
16
+ - pin @unisphere/cli to 5.0.1
17
+
18
+ ## 3.0.0
19
+
20
+ ### Major Changes
21
+
22
+ - sync templates with @unisphere/nx@4.3.3 migrations
23
+ - add Security Audit CI step to cicd.yml
24
+ - add audit allowlist to package.json
25
+ - remove ts-jest from devDependencies
26
+ - update documentation .gitignore (simplify entries)
27
+ - fix trailing whitespace in cicd.yml template
28
+ - pin @unisphere/nx to 4.3.3
29
+ - pin @unisphere/cli to 4.1.2
30
+
3
31
  ## 2.11.0
4
32
 
5
33
  ### Minor Changes
@@ -20,7 +20,7 @@ jobs:
20
20
  outputs:
21
21
  hasChangesets: ${{ steps.changesets.outputs.hasChangesets }}
22
22
  steps:
23
-
23
+
24
24
  - name: Cache npm
25
25
  uses: actions/cache@v3
26
26
  with:
@@ -55,9 +55,9 @@ jobs:
55
55
  uses: kaltura/unisphere-core/.github/actions/pre-cicd@main
56
56
  with:
57
57
  repo-path: '${{ github.workspace }}'
58
-
59
- - name: Setup JFrog
60
-
58
+
59
+ - name: Setup JFrog
60
+
61
61
  uses: jfrog/setup-jfrog-cli@v4
62
62
  id: setup-jfrog
63
63
  env:
@@ -65,12 +65,17 @@ jobs:
65
65
  with:
66
66
  oidc-provider-name: ovp-github-oidc
67
67
 
68
- - name: Install Dependencies
68
+ - name: Install Dependencies
69
69
  run: npm ci --prefer-offline --include=optional --no-fund
70
70
  env:
71
71
  GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }}
72
72
  KALTURA_JFROG_TOKEN: ${{ steps.setup-jfrog.outputs.oidc-token }}
73
73
 
74
+ - name: Security Audit
75
+ run: npx unisphere tools audit
76
+ env:
77
+ KALTURA_JFROG_TOKEN: ${{ steps.setup-jfrog.outputs.oidc-token }}
78
+
74
79
  - name: Create Release Pull Request or Publish to npm
75
80
  id: changesets
76
81
  uses: changesets/action@v1
@@ -2,4 +2,5 @@
2
2
  /dist
3
3
  /coverage
4
4
  /.nx/cache
5
- /.nx/workspace-data
5
+ /.nx/workspace-data
6
+ .nx/self-healing
@@ -54,3 +54,6 @@ user-scripts/
54
54
  # Claude Code configuration
55
55
  .claude/*
56
56
  !.claude/skills
57
+
58
+ .nx/polygraph
59
+ .nx/self-healing
@@ -1,5 +1,5 @@
1
- import { getJestProjectsAsync } from '@nx/jest';
1
+ const { getJestProjectsAsync } = require('@nx/jest');
2
2
 
3
- export default async () => ({
3
+ module.exports = async () => ({
4
4
  projects: await getJestProjectsAsync(),
5
5
  });
@@ -34,7 +34,6 @@
34
34
  "plugin": "@nx/vite/plugin",
35
35
  "options": {
36
36
  "buildTargetName": "build",
37
- "testTargetName": "test",
38
37
  "serveTargetName": "serve",
39
38
  "previewTargetName": "preview",
40
39
  "serveStaticTargetName": "serve-static"
@@ -53,6 +52,12 @@
53
52
  "options": {
54
53
  "targetName": "test"
55
54
  }
55
+ },
56
+ {
57
+ "plugin": "@nx/vitest",
58
+ "options": {
59
+ "testTargetName": "test"
60
+ }
56
61
  }
57
62
  ],
58
63
  "generators": {