Skip to content

Commit

Permalink
fix: pinned colors to 1.4.0
Browse files Browse the repository at this point in the history
cleared out package-lock.json

Update azure-pipelines.yml for Azure Pipelines
Update azure-pipelines.yml for Azure Pipelines
tst

tst

chown

test

npm cache

fix

chown

debug

chown

chown

chown

chown

install

test

remove azure bake

cache

config

npm

cachge

lerna no sudo

revert pipeline

delete log.out

remove sudo from gulp

added azure-bake back to functions
  • Loading branch information
tannerwatson committed Jan 11, 2022
1 parent 1a8c719 commit 754c0f2
Show file tree
Hide file tree
Showing 17 changed files with 31,657 additions and 14,951 deletions.
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@
"statusBarItem.hoverBackground": "#223800",
"statusBar.foreground": "#e7e7e7",
"activityBar.activeBackground": "#223800",
"activityBar.activeBorder": "#0074bf"
"activityBar.activeBorder": "#0074bf",
"sash.hoverBorder": "#223800",
"statusBarItem.remoteBackground": "#030500",
"statusBarItem.remoteForeground": "#e7e7e7"
},
"peacock.color": "#030500"
}
204 changes: 0 additions & 204 deletions arm-helper/package-lock.json

This file was deleted.

4 changes: 2 additions & 2 deletions core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
},
"peerDependencies": {
"@azure/ms-rest-nodeauth": "^3.0.0",
"colors": "^1.3.3"
"colors": "1.4.0"
},
"devDependencies": {
"@azure/ms-rest-nodeauth": "^3.0.0",
"@types/node": "^10.12.18",
"colors": "^1.3.3",
"colors": "1.4.0",
"standard-version": "^4.4.0"
},
"publishConfig": {
Expand Down
26 changes: 13 additions & 13 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function adoPrep(done) {
if (branchName !== 'master') {
branchName = branchName.replace(/refs\/heads\/(feature\/)?/i, '');
}
var gitScript = `sudo git checkout ${branchName}`;
var gitScript = `git checkout ${branchName}`;
console.log('ADO Prep Script: ' + gitScript);
return runCmd(gitScript, done);
}
Expand Down Expand Up @@ -74,15 +74,15 @@ function conditions(done) {

function gitCommit(done) {
var branchName = params.build.buildSourceBranch.replace(/refs\/heads\/(feature\/)?/i, '');
var gitScript = `sudo git checkout ${branchName} &&
sudo git config user.email "${params.build.buildRequestedForEmail}" &&
sudo git config user.name "${params.build.buildRequestedFor}" &&
sudo git update-index --assume-unchanged .npmrc &&
sudo git add . &&
sudo git commit --author '${params.build.buildRequestedFor} <${params.build.buildRequestedForEmail}>' --message "chore[skip ci]: Update & Commit Locks" &&
sudo git tag v${lerna.version} &&
sudo git push origin ${branchName} &&
sudo git push origin --tags`;
var gitScript = `git checkout ${branchName} &&
git config user.email "${params.build.buildRequestedForEmail}" &&
git config user.name "${params.build.buildRequestedFor}" &&
git update-index --assume-unchanged .npmrc &&
git add . &&
git commit --author '${params.build.buildRequestedFor} <${params.build.buildRequestedForEmail}>' --message "chore[skip ci]: Update & Commit Locks" &&
git tag v${lerna.version} &&
git push origin ${branchName} &&
git push origin --tags`;
console.log('Git Script: ' + gitScript);
return shell.task(gitScript)(done());
}
Expand All @@ -94,13 +94,13 @@ function inlineCoverageSource() {
}

function lernaBuild(done) {
var gitScript = `sudo npm run clean:build`;
var gitScript = `npm run clean:build`;
console.log('Build Script: ' + gitScript);
return runCmd(gitScript, done);
}

function lernaPublish(done) {
var gitScript = `sudo npm run publish`;
var gitScript = `npm run publish`;
console.log('Build Script: ' + gitScript);
return runCmd(gitScript, done);
}
Expand Down Expand Up @@ -220,7 +220,7 @@ function sonarQube(done) {
}

function systemPublish(done) {
var gitScript = `sudo npm run release-build --prefix ./system`;
var gitScript = `npm run release-build --prefix ./system`;
console.log('Build Script: ' + gitScript);
return runCmd(gitScript, done);
}
Expand Down
Loading

0 comments on commit 754c0f2

Please sign in to comment.