Skip to content

Commit

Permalink
🔥 some cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
fluffynuts committed Sep 14, 2023
1 parent 4d029bf commit 720b181
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 199 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -293,3 +293,4 @@ buildreports
*.swo
build-tools
.vscode
local-tasks/*.generated.js
120 changes: 0 additions & 120 deletions local-tasks/release.generated.js

This file was deleted.

25 changes: 13 additions & 12 deletions local-tasks/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,20 @@ const

env.associate([ "DRY_RUN" ], [ "push" ]);

gulp.task("release", async done => {
gulp.task("release", done => {
const { runTask } = requireModule<RunTask>("run-task");
await runTask("verify-up-to-date");
await runTask("test");
await runTask("clear-old-packages");
await runTask("pack")
await runTask("push");
await runTask("commit-release");
await runTask("tag-and-push");
// runSequence(
// "verify-up-to-date", "test", "clear-old-packages",
// "pack", "push", "commit-release", "tag-and-push",
// done);
// await runTask("verify-up-to-date");
// await runTask("test");
// await runTask("clear-old-packages");
// await runTask("pack")
// await runTask("push");
// await runTask("commit-release");
// await runTask("tag-and-push");
const runSequence = requireModule<RunSequence>("run-sequence");
runSequence(
"verify-up-to-date", "test", "clear-old-packages",
"pack", "push", "commit-release", "tag-and-push",
done);
});

gulp.task("push", "pushes packages to nuget.org", () => {
Expand Down
57 changes: 0 additions & 57 deletions local-tasks/test-zarro.generated.js

This file was deleted.

14 changes: 7 additions & 7 deletions package-lock.json

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

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"test-push": "zarro @",
"test-zarro": "zarro @",
"clean": "zarro @",
"nuget-restore": "zarro @",
"quick-test-dotnet": "zarro @"
},
"devDependencies": {
Expand All @@ -28,6 +27,6 @@
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"yafs": "^1.23.0",
"zarro": "^1.144.221"
"zarro": "^1.144.239"
}
}
1 change: 0 additions & 1 deletion src/.editorconfig

This file was deleted.

3 changes: 3 additions & 0 deletions src/NExpect.sln
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".config", ".config", "{F58A
ProjectSection(SolutionItems) = preProject
MonoForFramework.targets = MonoForFramework.targets
Directory.Build.props = Directory.Build.props
..\.gitignore = ..\.gitignore
..\.zarro-defaults = ..\.zarro-defaults
..\package.json = ..\package.json
EndProjectSection
EndProject
Global
Expand Down

0 comments on commit 720b181

Please sign in to comment.