forked from tools/josh
1
0
Fork 0
Source code of my personal website.
Go to file
Florine W. Dekker 9ba8914b85
Fix #37
2019-11-03 17:42:36 +01:00
src Fix #37 2019-11-03 17:42:36 +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
Gruntfile.js Capitalise file names 2019-11-01 11:59:33 +01:00
README.md Add and document clean command 2019-11-01 12:05:26 +01:00
package-lock.json Use passive scrolling and add main element 2019-11-02 13:10:49 +01:00
package.json Add and document clean command 2019-11-01 12:05:26 +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