Skip to content

Commit 06f33fe

Browse files
committed
Downgrade npm scripts to nodejs v10
1 parent 2741e43 commit 06f33fe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/gitattributes.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
</ItemGroup>
1616

1717
<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
18-
<Exec Command="npm ci" />
19-
<Exec Command="npm run build" />
18+
<Exec Command="npm install" />
19+
<Exec Command="gulp build" />
2020
</Target>
2121

2222
<ItemGroup>

src/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.0.0",
44
"private": true,
55
"engines": {
6-
"node": ">=12"
6+
"node": ">=10"
77
},
88
"devDependencies": {
99
"del": "^4.1.1",

0 commit comments

Comments
 (0)