forked from tools/josh
1
0
Fork 0
Source code of my personal website.
Go to file
Florine W. Dekker 67898842ba
Update to TypeScript 3.7
And clear empty lines and consistify error usage.
2019-11-06 14:47:14 +01:00
src Update to TypeScript 3.7 2019-11-06 14:47:14 +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 Update to TypeScript 3.7 2019-11-06 14:47:14 +01:00
package.json Update to TypeScript 3.7 2019-11-06 14:47:14 +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