mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 15:42:48 -05:00
Cleanup node scripts (#1858)
This commit is contained in:
@ -11,8 +11,8 @@ echo "Clean"
|
||||
dotnet clean $dir\Admin.csproj -c "Release" -o $dir\obj\Azure\publish
|
||||
echo "Node Build"
|
||||
cd $dir
|
||||
npm install
|
||||
npm ci
|
||||
npm run build
|
||||
cd $curDir
|
||||
gulp --gulpfile $dir\gulpfile.js build
|
||||
echo "Publish"
|
||||
dotnet publish $dir\Admin.csproj -c "Release" -o $dir\obj\Azure\publish
|
||||
|
@ -14,8 +14,8 @@ echo "Clean"
|
||||
dotnet clean "$DIR/Admin.csproj" -c "Release" -o "$DIR/obj/build-output/publish"
|
||||
echo "Node Build"
|
||||
cd "$DIR"
|
||||
npm install
|
||||
npm ci
|
||||
npm run build
|
||||
cd "$CUR_DIR"
|
||||
gulp --gulpfile "$DIR/gulpfile.js" build
|
||||
echo "Publish"
|
||||
dotnet publish "$DIR/Admin.csproj" -c "Release" -o "$DIR/obj/build-output/publish"
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
const gulp = require('gulp');
|
||||
const merge = require('merge-stream');
|
||||
const sass = require('gulp-sass');
|
||||
const sass = require('gulp-sass')(require("sass"));
|
||||
const del = require('del');
|
||||
|
||||
const paths = {};
|
||||
|
5806
src/Admin/package-lock.json
generated
5806
src/Admin/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -4,15 +4,19 @@
|
||||
"description": "Bitwarden System Admin Portal",
|
||||
"repository": "https://github.com/bitwarden/server",
|
||||
"license": "GPL-3.0",
|
||||
"scripts": {
|
||||
"build": "gulp build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"bootstrap": "4.5.0",
|
||||
"del": "5.1.0",
|
||||
"del": "6.0.0",
|
||||
"font-awesome": "4.7.0",
|
||||
"gulp": "4.0.2",
|
||||
"gulp-sass": "4.0.1",
|
||||
"gulp-sass": "5.1.0",
|
||||
"jquery": "3.5.1",
|
||||
"merge-stream": "1.0.1",
|
||||
"merge-stream": "2.0.0",
|
||||
"popper.js": "1.16.1",
|
||||
"sass": "^1.49.7",
|
||||
"toastr": "^2.1.4"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user