-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update npm packages - Update build scripts - Update github action workflow
- Loading branch information
1 parent
1c7412f
commit cd6fc8e
Showing
16 changed files
with
6,330 additions
and
11,203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v16.4.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
@echo off | ||
|
||
@REM # Install dependencies for pcf project | ||
cd ./control | ||
call npm install --no-audit | ||
call npm audit --prod | ||
cd .. | ||
|
||
@REM # Build the solution | ||
call dotnet build ./solution -c Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
#!/bin/sh | ||
|
||
# Use node version manager to install node version consistently | ||
if (command -v nvm) ; then | ||
nvm install && nvm use | ||
fi | ||
|
||
# Install dependencies for pcf project | ||
npm --prefix ./control install --no-audit | ||
npm --prefix ./control audit --prod | ||
|
||
# Build the solution | ||
dotnet build ./solution -c Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
@echo off | ||
|
||
call npx rimraf ./**/node_modules ./**/bin ./**/obj ./**/out ./**/dist | ||
call npx rimraf ./**/node_modules ./**/bin ./**/obj ./**/out |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
|
||
npx rimraf ./**/node_modules ./**/bin ./**/obj ./**/out ./**/~ ./**/dist | ||
npx rimraf ./**/node_modules ./**/bin ./**/obj ./**/out ./**/~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"pcfAllowCustomWebpack": "on" | ||
"pcfAllowCustomWebpack": "on" | ||
} |
Oops, something went wrong.