Skip to content

Commit

Permalink
Fix tree
Browse files Browse the repository at this point in the history
  • Loading branch information
brianjenkins94 committed Jan 11, 2023
1 parent cedb05a commit 6789f83
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 28 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/ci.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ npx brianjenkins94/serve
2. Create a `tree.txt`:

```bash
find . -type f -not -name ".*" -not -path "./.git/**" -not -path "./node_modules/**" > tree.txt
find . -type f -not -path "*/.*" -not -path "*/node_modules/**" > tree.txt
```

The files listed in `tree.txt` will be navigable through the file explorer.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"bin": "bootstrap",
"scripts": {
"serve": "nodemon --watch \"**/*.ts\" --exec ts-node server.ts",
"tree": "find . -type f -not -name \".*\" -not -path \"./.git/**\" -not -path \"./node_modules/**\" > tree.txt",
"tree": "find . -type f -not -path \"*/.*\" -not -path \"*/node_modules/**\" > tree.txt",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
Expand Down
4 changes: 0 additions & 4 deletions tree.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,8 @@
./bootstrap
./LICENSE
./README.md
./package-lock.json
./package.json
./foo/bar/baz/test.txt
./tsconfig.json
./.vscode/settings.json
./.vscode/extensions.json
./.vscode/launch.json
./tree.txt
./server.ts

0 comments on commit 6789f83

Please sign in to comment.