-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updating to get rid of old docs * better colors
- Loading branch information
Showing
96 changed files
with
4,701 additions
and
6,177 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,45 @@ | ||
module.exports = { | ||
title: "just ___", | ||
description: "The task library that just works", | ||
base: "/just/", | ||
themeConfig: { | ||
nav: [ | ||
{ text: "Home", link: "/" }, | ||
{ text: "Guide", link: "/guide/" }, | ||
{ text: "Github", link: "https://github.com/microsoft/just" }, | ||
], | ||
sidebar: [ | ||
{ | ||
title: 'Home', // required | ||
path: '/', // optional, link of the title, which should be an absolute path and must exist | ||
}, | ||
{ | ||
title: 'Tasks', | ||
path: '/tasks', | ||
collapsable: false, | ||
sidebarDepth: 1, | ||
children: [ '/tasks/composition', '/tasks/logging', '/tasks/args', '/tasks/condition', '/tasks/thunk' ] | ||
}, | ||
{ | ||
title: 'Scripts', | ||
path: '/scripts', | ||
collapsable: false, | ||
sidebarDepth: 1, | ||
children: [ '/scripts/typescript', '/scripts/webpack', '/scripts/lint', '/scripts/jest' ] | ||
} | ||
] | ||
}, | ||
|
||
plugins: [ | ||
[ | ||
"mermaidjs", | ||
{ | ||
gantt: { | ||
barHeight: 20, | ||
fontSize: 12, | ||
useWidth: 960, | ||
}, | ||
}, | ||
], | ||
], | ||
}; |
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 @@ | ||
Keep |
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,2 @@ | ||
$contentWidth ?= 960px | ||
$accentColor = #000080 |
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,23 @@ | ||
--- | ||
home: true | ||
# heroImage: /hero.png | ||
heroText: The task library that just works | ||
tagline: A sensible set of task to build, test, and lint your frontend projects | ||
actionText: Get Started → | ||
actionLink: /tasks/ | ||
features: | ||
- title: Flexible | ||
details: 'Unlike create-react-app, just gives sensible defaults but does not hide config files' | ||
- title: Task orchestration | ||
details: Like gulp, just provides parallel() and series() to fine tune task runs | ||
- title: No waiting for latest devDependencies | ||
details: just-scripts knows how to run tools, but it does not prescribe versions of the dependencies - you upgrade at your own timing! | ||
- title: TypeScript suport | ||
details: just-scripts configurations are TypeScript-enabled, so you don't have to have a separate build step to use your build tools | ||
- title: Lightweight task orchestration | ||
details: just-task is a lightweight task orchestrator that has no streaming file system abstraction | ||
- title: Battle tested | ||
details: just is built upon just the right abstraction from the gulp ecosystem, which is used by many repos | ||
|
||
footer: MIT Licensed | Copyright © 2020-present Microsoft | ||
--- |
File renamed without changes
File renamed without changes
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.