spec-up-t 1.6.17 → 1.6.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spec-up-t",
3
- "version": "1.6.17",
3
+ "version": "1.6.18",
4
4
  "description": "Technical specification drafting tool that generates rich specification documents from markdown. Forked from https://github.com/decentralized-identity/spec-up by Daniel Buchner (https://github.com/csuwildcat)",
5
5
  "main": "./index",
6
6
  "repository": {
@@ -118,6 +118,21 @@ function migrateVersionsToSnapshots(outputPath) {
118
118
  context: 'Remove old docs from git tracking'
119
119
  }
120
120
  );
121
+ Logger.action(
122
+ 'Configure GitHub Pages deployment',
123
+ {
124
+ hint: 'Update your repository settings to deploy from gh-pages branch',
125
+ steps: [
126
+ 'Go to your repository on GitHub',
127
+ 'Click Settings',
128
+ 'In the left sidebar, click Pages',
129
+ 'Under Build and deployment, set Source to Deploy from a branch',
130
+ 'Select the gh-pages branch and / (root) folder',
131
+ 'Click Save'
132
+ ],
133
+ context: 'Enable GitHub Pages to serve your snapshots from the gh-pages branch'
134
+ }
135
+ );
121
136
  }
122
137
  }
123
138