Skip to content

Commit d2ac118

Browse files
committed
feat(repo): new integrations library
1 parent b690929 commit d2ac118

File tree

16 files changed

+304
-149
lines changed

16 files changed

+304
-149
lines changed

jest.config.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import type { Config } from 'jest'
2+
import { getJestProjectsAsync } from '@nx/jest'
3+
4+
export default async (): Promise<Config> => ({
5+
projects: await getJestProjectsAsync(),
6+
})

jest.preset.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
const nxPreset = require('@nx/jest/preset').default
2+
3+
module.exports = { ...nxPreset }

nx.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,10 +248,11 @@
248248
}
249249
],
250250
"release": {
251-
"projects": ["packages/core/*"],
251+
"projects": ["packages/core/*", "storage-vectors-js"],
252252
"projectsRelationship": "fixed",
253253
"releaseTagPatternCheckAllBranchesWhen": true,
254254
"version": {
255+
"preVersionCommand": "npx nx run-many -t build",
255256
"conventionalCommits": true
256257
},
257258
"changelog": {

package-lock.json

Lines changed: 124 additions & 147 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)