-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathproject.json
More file actions
68 lines (68 loc) · 1.79 KB
/
Copy pathproject.json
File metadata and controls
68 lines (68 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@rudderstack/analytics-js-plugins",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/analytics-js-plugins/src",
"projectType": "library",
"tags": [
"type:lib",
"scope:plugins"
],
"targets": {
"test": {
"executor": "@nx/jest:jest",
"outputs": [
"{workspaceRoot}/coverage/{projectRoot}"
],
"options": {
"jestConfig": "packages/analytics-js-plugins/jest.config.mjs",
"passWithNoTests": true,
"codeCoverage": true,
"watchAll": false,
"forceExit": true
},
"configurations": {
"ci": {
"ci": true,
"codeCoverage": true
}
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": [
"{options.outputFile}"
],
"options": {
"hasTypeAwareRules": true,
"lintFilePatterns": [
"packages/analytics-js-plugins/src/**/*.{ts,js}",
"packages/analytics-js-plugins/{package,project}.json"
]
},
"configurations": {
"ci": {
"force": true,
"outputFile": "packages/analytics-js-plugins/reports/eslint.json",
"format": "json"
}
}
},
"version": {
"executor": "@jscutlery/semver:version",
"options": {
"preset": "conventionalcommits",
"tagPrefix": "{projectName}@",
"trackDeps": true
}
},
"github": {
"executor": "@jscutlery/semver:github",
"options": {
"tag": "@rudderstack/analytics-js-plugins@3.15.7",
"title": "@rudderstack/analytics-js-plugins@3.15.7",
"discussion-category": "@rudderstack/analytics-js-plugins@3.15.7",
"notesFile": "./packages/analytics-js-plugins/CHANGELOG_LATEST.md"
}
}
}
}