-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.2.0: Markdown support, TravisCI, test coverage and code refactor.
- Loading branch information
1 parent
8e78f36
commit 332ee00
Showing
31 changed files
with
467 additions
and
336 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
language: node_js | ||
node_js: | ||
- "12.12" | ||
cache: | ||
directories: | ||
- node_modules | ||
branches: | ||
only: | ||
- master | ||
before_install: | ||
- npm update | ||
install: | ||
- npm ci | ||
script: | ||
- npm run test | ||
- npm run coveralls | ||
- npm run build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,26 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [0.2.0] - 21-10-2019 | ||
|
||
### Added | ||
|
||
- Markdown support. | ||
- Build command supports output folder option and args validation. | ||
- Travis CI integration. | ||
- Test coverage. | ||
|
||
## [0.1.0] - 20-10-2019 | ||
|
||
### Added | ||
|
||
- Uses generic file types only. | ||
Template system. | ||
- Template system. | ||
- Snippet system. | ||
- Progressive builds. | ||
- CSS minification. | ||
- Blog post, recent posts and archive. | ||
- Blog post, recent posts and archive. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
module.exports = { | ||
"roots": [ | ||
"<rootDir>/test" | ||
], | ||
"transform": { | ||
"^.+\\.ts$": "ts-jest" | ||
collectCoverage: true, | ||
verbose: true, | ||
collectCoverageFrom: ['src/**/*.ts'], | ||
transform: { | ||
"^.+\\.tsx?$": "ts-jest", | ||
}, | ||
testRegex: "(./tests/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", | ||
} |
Oops, something went wrong.