forked from tools/josh
1
0
Fork 0
Source code of my personal website.
Go to file
Florine W. Dekker fee631e216
Allow equals in option values
Fixes #153.
2020-12-07 17:43:52 +01:00
src Allow equals in option values 2020-12-07 17:43:52 +01:00
.editorconfig
.gitattributes
.gitignore
.nycrc.json
Gruntfile.js Correctly resolve JS bundle by version number 2020-09-30 15:09:57 +02:00
README.md Add watcher for better builds 2020-09-30 15:00:57 +02:00
package-lock.json Change privacy link 2020-12-07 08:14:23 +01:00
package.json Allow equals in option values 2020-12-07 17:43:52 +01:00
tsconfig.json Change privacy link 2020-12-07 08:14:23 +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 `dist/` for development
$> npm run dev
# Same as above, but automatically rerun it whenever files are changed
$> npm run dev:server
# Build the application in `dist/` for deployment
$> npm run deploy
# Remove build files
$> npm run clean

Testing

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