The JavaScript Online Shell. https://fwdekker.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Florine W. Dekker a6562f16ea
Shorten test output
3 weeks ago
src Shorten test output 3 weeks ago
.editorconfig Add .editorconfig and format accordingly 3 years ago
.gitattributes Migrate to Grunt as build tool 3 years ago
.gitignore Move build output to `dist/` 3 years ago
.nycrc.json Fix #51 3 years ago
Gruntfile.js Remove all inline styles 2 years ago
LICENSE Update dependencies, fix compatibility issues 1 year ago
README.md Add watcher for better builds 3 years ago
package-lock.json Shorten test output 3 weeks ago
package.json Shorten test output 3 weeks ago
tsconfig.json Update dependencies, fix compatibility issues 1 year ago

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