Skip to content
This repository was archived by the owner on Jan 22, 2021. It is now read-only.

Update references from example to .example in scripts, readme, etc #100

Merged
merged 1 commit into from
Dec 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
example/.meteor
.example/.meteor
node_modules
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.DS_Store
.sass-cache/
.npm/
example/settings.json
.example/settings.json
npm-debug.log
node_modules
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ test-package:
@meteor test-packages ./ --driver-package $(TEST_DRIVER) --once --port $(PORT)

test-app:
@cd example && npm test -- --port $(PORT) && cd -
@cd .example && npm test -- --port $(PORT) && cd -

test-app-watch:
@cd example && npm run test:watch -- --port $(PORT)
@cd .example && npm run test:watch -- --port $(PORT)

test-watch:
@TEST_WATCH=1 meteor test-packages ./ --driver-package $(TEST_DRIVER) --port $(PORT)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ meteor add chrisbutler:node-sass

## Sample app

There is a sample application in this repo, in the `example` directory. Boot it up, and preview an email with:
There is a sample application in this repo, in the `.example` directory. Boot it up, and preview an email with:

```bash
cd example
cd .example
meteor
open http://localhost:3000/emails/preview/sample/john
```
Expand Down
2 changes: 1 addition & 1 deletion update-docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

git stash && \
git checkout -b gh-pages && \
rm -rf example && \
rm -rf .example && \
docco lib/*.js && \
git add docs && \
git commit -a -m 'Generate documentation' && \
Expand Down