@airscript/ghitgud 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -1
- package/CITATION.cff +1 -1
- package/VERSION +1 -1
- package/app/ghitgud.ts +2 -1
- package/dist/app/ghitgud.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) with some edits,
|
|
4
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
4
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
|
+
|
|
6
|
+
# 1.0.3
|
|
7
|
+
|
|
8
|
+
## What's Changed
|
|
9
|
+
|
|
10
|
+
- noop: deployment trigger
|
|
5
11
|
|
|
6
12
|
# 1.0.2
|
|
7
13
|
|
package/CITATION.cff
CHANGED
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.3
|
package/app/ghitgud.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
import process from "process";
|
|
2
3
|
import { program } from "commander";
|
|
3
4
|
|
|
@@ -5,7 +6,7 @@ import ascii from "./ascii";
|
|
|
5
6
|
import commands from "./commands";
|
|
6
7
|
|
|
7
8
|
const NAME = "ghitgud";
|
|
8
|
-
const VERSION = "1.0.
|
|
9
|
+
const VERSION = "1.0.3";
|
|
9
10
|
const DESCRIPTION = "A simple CLI to give superpowers to GitHub.";
|
|
10
11
|
|
|
11
12
|
program
|
package/dist/app/ghitgud.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
"use strict";
|
|
2
3
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
4
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8,7 +9,7 @@ const commander_1 = require("commander");
|
|
|
8
9
|
const ascii_1 = __importDefault(require("./ascii"));
|
|
9
10
|
const commands_1 = __importDefault(require("./commands"));
|
|
10
11
|
const NAME = "ghitgud";
|
|
11
|
-
const VERSION = "1.0.
|
|
12
|
+
const VERSION = "1.0.3";
|
|
12
13
|
const DESCRIPTION = "A simple CLI to give superpowers to GitHub.";
|
|
13
14
|
commander_1.program
|
|
14
15
|
.name(NAME)
|