forked from tools/josh
1
0
Fork 0
Source code of my personal website.
Go to file
Florine W. Dekker 39aa4d6412
Fix #51
And reformat the package.json while I'm at it.
2019-11-09 19:36:23 +01:00
src Christen "josh" and add version number 2019-11-09 19:23:33 +01:00
.editorconfig Add .editorconfig and format accordingly 2019-11-06 15:07:56 +01:00
.gitattributes Migrate to Grunt as build tool 2019-10-26 19:29:00 +02:00
.gitignore Migrate to Grunt as build tool 2019-10-26 19:29:00 +02:00
.nycrc.json Fix #51 2019-11-09 19:36:23 +01:00
Gruntfile.js Christen "josh" and add version number 2019-11-09 19:23:33 +01:00
README.md Fix #51 2019-11-09 19:36:23 +01:00
package-lock.json Fix #51 2019-11-09 19:36:23 +01:00
package.json Fix #51 2019-11-09 19:36:23 +01:00
tsconfig.json Use Mocha+Chai as test framework 2019-10-31 20:40:51 +01:00

README.md

fwdekker.com

The source code of my personal website.

Development

Requirements

Setting up

# Install dependencies (only needed once)
$> npm ci

Building

# Build the application in `build/` for development
$> npm run dev
# Build the application in `build/` for deployment
$> npm run deploy
# Remove build files
$> npm run clean

Testing

# Run tests
$> npm test
# Run tests with coverage
$> npm run coverage