Skip to content

Commit bfe1c39

Browse files
committed
[INTERNAL] Fix missing peerDependency to acorn / Add CI check
Due to a bug in npm, acorn-jsx can't find the correct version of acorn. Downgrading to [email protected] solves the issue as only one acorn version (v7) is present. Also adding an 'npm ls' check to detect such issues before they get merged into master.
1 parent 612d42a commit bfe1c39

File tree

3 files changed

+101
-30
lines changed

3 files changed

+101
-30
lines changed

azure-pipelines.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ steps:
3636
- script: npm ci
3737
displayName: Install Dependencies
3838

39+
- script: npm ls
40+
displayName: Check for missing / extraneous Dependencies
41+
3942
- script: npm run test-azure
4043
displayName: Run Tests
4144

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
},
126126
"devDependencies": {
127127
"@ui5/project": "^2.2.0",
128-
"ava": "^3.12.1",
128+
"ava": "3.11.1",
129129
"chokidar-cli": "^2.1.0",
130130
"coveralls": "^3.1.0",
131131
"cross-env": "^7.0.2",

0 commit comments

Comments
 (0)