wordspace 0.0.4 → 0.0.5

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/dist/index.js CHANGED
@@ -3,7 +3,7 @@ import { init } from "./commands/init.js";
3
3
  import { search } from "./commands/search.js";
4
4
  import { add } from "./commands/add.js";
5
5
  import * as log from "./lib/log.js";
6
- const VERSION = "0.0.4";
6
+ const VERSION = "0.0.5";
7
7
  const HELP = `
8
8
  Usage: wordspace <command> [options]
9
9
 
@@ -2,7 +2,7 @@ import { get as httpsGet } from "node:https";
2
2
  import { mkdirSync, writeFileSync, existsSync } from "node:fs";
3
3
  import { join } from "node:path";
4
4
  import * as log from "./log.js";
5
- const CONTENTS_URL = "https://api.github.com/repos/frames-engineering/wordspace-demos/contents/workflows";
5
+ const CONTENTS_URL = "https://api.github.com/repos/frames-engineering/wordspace/contents/workflows";
6
6
  export function httpGet(url, headers = {}) {
7
7
  return new Promise((resolve, reject) => {
8
8
  const allHeaders = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wordspace",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"