Skip to content

Commit

Permalink
v2.1.4. Improvement.
Browse files Browse the repository at this point in the history
- v2.1.4 January 10, 2014
	- Updated dependencies
  • Loading branch information
balupton committed Jan 10, 2014
1 parent 342925c commit 5a935ec
Show file tree
Hide file tree
Showing 13 changed files with 382 additions and 143 deletions.
32 changes: 15 additions & 17 deletions .gitignore
@@ -1,20 +1,18 @@
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz
# v1.3.10 December 10, 2013
# https://github.com/bevry/base

pids
logs
results
# Temp Files
**/*.log
**/.docpad.db

node_modules
npm-debug.log
# Build Files
build/
components/
bower_components/
node_modules/
out/

test/out/
test/src/documents/gist/
test/src/documents/a.html.md
out/
# =====================================
# CUSTOM MODIFICATIONS

# None
36 changes: 29 additions & 7 deletions .npmignore
@@ -1,10 +1,32 @@
# v1.3.10 December 10, 2013
# https://github.com/bevry/base

# Temp Files
**/*.log
**/.docpad.db

# Build Files
build/
components/
bower_components/
node_modules/

# Development Files
.travis*
Makefile
Cakefile
History.md
Makefile
BACKERS.md
CONTRIBUTING.md
HISTORY.md
**/src/
**/test/

# Other Package Definitions
template.js
component.json
bower.json

# =====================================
# CUSTOM MODIFICATIONS

src/
out/*.tester.*
out/*.test.*
out/test/
test/
# None
4 changes: 2 additions & 2 deletions .travis.yml
@@ -1,7 +1,7 @@
# v1.3.2 October 26, 2013
# v1.3.8 November 7, 2013
# https://github.com/bevry/base
language: node_js
install: "npm install; npm install docpad; cd ./node_modules/docpad; npm install; cd ../.."
install: "npm install; ./node_modules/.bin/cake install"
before_script: "./node_modules/.bin/cake compile"
script: "npm test"
node_js:
Expand Down
82 changes: 82 additions & 0 deletions CONTRIBUTING.md
@@ -0,0 +1,82 @@
<!--
v1.3.10 December 10, 2013
https://github.com/bevry/base
-->


# Contribute


## Resources

- [Coding Standards](http://bevry.me/bevry/coding-standards)
- [Documentation Guidelines](http://bevry.me/bevry/documentation-guidelines)
- [Support Guidelines](http://bevry.me/bevry/support-guidelines)


## Development

For developers and contributors

1. Fork project and clone your fork

2. Install global dependencies

``` bash
npm install -g coffee-script
```

3. Install local dependencies

``` bash
cake install
```

4. Compile project

``` bash
# Only once
cake compile

# On every change
cake watch
```

5. Run tests

``` bash
cake test
```


## Publishing

For project maintainers

1. Update meta files with latest information

``` bash
cake prepublish
```

2. Add a changelog entry to `HISTORY.md` with change information

```
v2.0.0 April 17, 2013
- Something that changes
```

3. Update `version` entry in `package.json` with new version number

4. Commit changes

``` bash
git commit -a -m "A message about what changed"
```

5. Publish new version

``` bash
cake publish
```

0 comments on commit 5a935ec

Please sign in to comment.