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

Commit 699150f

Browse files
authored
Merge pull request #100 from droka/master
Update references from example to .example in scripts, readme, etc
2 parents 38811d6 + 5ebc964 commit 699150f

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.eslintignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
example/.meteor
1+
.example/.meteor
22
node_modules

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.DS_Store
22
.sass-cache/
33
.npm/
4-
example/settings.json
4+
.example/settings.json
55
npm-debug.log
66
node_modules

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ test-package:
88
@meteor test-packages ./ --driver-package $(TEST_DRIVER) --once --port $(PORT)
99

1010
test-app:
11-
@cd example && npm test -- --port $(PORT) && cd -
11+
@cd .example && npm test -- --port $(PORT) && cd -
1212

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

1616
test-watch:
1717
@TEST_WATCH=1 meteor test-packages ./ --driver-package $(TEST_DRIVER) --port $(PORT)

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ meteor add chrisbutler:node-sass
6464

6565
## Sample app
6666

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

6969
```bash
70-
cd example
70+
cd .example
7171
meteor
7272
open http://localhost:3000/emails/preview/sample/john
7373
```

update-docs.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
git stash && \
44
git checkout -b gh-pages && \
5-
rm -rf example && \
5+
rm -rf .example && \
66
docco lib/*.js && \
77
git add docs && \
88
git commit -a -m 'Generate documentation' && \

0 commit comments

Comments
 (0)