Skip to content

Commit

Permalink
Don't run npx before npm install
Browse files Browse the repository at this point in the history
See gh-142
  • Loading branch information
philwebb committed Feb 15, 2023
1 parent 6cbfe7c commit f7e720a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 20 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
"eslint": "^8.33.0",
"glob": "8.1.0",
"mocha": "10.2.0",
"prettier": "2.8.4",
"typescript": "^4.9.4"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,21 +59,21 @@
<executions>
<execution>
<id>install-node-and-npm</id>
<phase>generate-resources</phase>
<phase>initialize</phase>
<goals>
<goal>install-node-and-npm</goal>
</goals>
</execution>
<execution>
<id>npm-install</id>
<phase>generate-resources</phase>
<phase>initialize</phase>
<goals>
<goal>npm</goal>
</goals>
</execution>
<execution>
<id>prettier-check</id>
<phase>validate</phase>
<phase>compile</phase>
<goals>
<goal>npx</goal>
</goals>
Expand Down

0 comments on commit f7e720a

Please sign in to comment.