Skip to content

Commit c79fb32

Browse files
committed
Update: Added more usable CLI shortcut. Bumped version number.
1 parent 3c4a03a commit c79fb32

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ npm run build
1818

1919
Using NPM
2020
```
21-
21+
npm install solid-bashlib
2222
```
2323

2424
## Synopsis
@@ -79,6 +79,7 @@ Run `npm run release` and follow the intructions on the CLI. Don't forget to cre
7979
- [X] Resource verification on edit (compare before / after hash and notify if something may have changed)
8080
- [ ] Write concrete test cases and spin up local pod server to test
8181
- [ ] Improve consistency of internal logging
82+
- [ ] Improve consistency of exported Javascript interface
8283
- [ ] Interactive Solid shell? -> Not sure if this will be useful.
8384
- [X] npm release
8485

src/index.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,19 @@ import find from "./commands/solid-find"
66
import query from './commands/solid-query'
77
import makeDirectory from "./commands/solid-mkdir"
88
import shell from "./commands/solid-shell"
9+
import createSolidPods from "./commands/solid-pod-create"
910
import { listPermissions, changePermissions, deletePermissions } from './commands/solid-perms'
11+
import { authenticateWithTokenFromJavascript } from "./authentication/AuthenticationToken"
12+
import { generateCSSToken } from "./authentication/TokenCreationCSS"
1013

14+
// General Solid functionality
1115
export { copy, list, remove, move, find, query, listPermissions, changePermissions, deletePermissions, makeDirectory, shell }
1216

13-
import { authenticateWithTokenFromJavascript } from "./authentication/AuthenticationToken"
14-
import { generateCSSToken } from "./authentication/TokenCreationCSS"
17+
// Authentication Functionality
1518
export { authenticateWithTokenFromJavascript as authenticateToken, generateCSSToken }
1619

20+
// CSS-specific Functionality
21+
export { createSolidPods }
22+
1723
// Type exports
1824
export type { Logger } from './logger';

0 commit comments

Comments
 (0)