The task library that just works
Перейти к файлу
renovate[bot] db5d23d8fc
Update devDependency @types/tar to v6.1.4 (#690)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-17 15:00:01 -08:00
.github Specify Node version in .nvmrc and engines (#624) 2022-09-09 17:16:56 -07:00
.vscode Install typescript at root and use workspace version in VS Code 2022-09-09 17:24:25 -07:00
change Update devDependency @types/tar to v6.1.4 (#690) 2023-02-17 15:00:01 -08:00
docs
packages Update devDependency @types/tar to v6.1.4 (#690) 2023-02-17 15:00:01 -08:00
scripts Remove cpx dependency 2022-09-08 20:35:45 -07:00
.dockerignore
.eslintignore
.eslintrc.json Use printWidth 120 2022-09-08 19:59:13 -07:00
.gitignore
.nvmrc Require Node 14 (#627) 2022-11-18 14:20:54 -08:00
.prettierignore Adding Microsoft SECURITY.MD (#595) 2022-08-31 14:55:24 -07:00
LICENSE
README.md rephrase description (#580) 2022-03-03 08:30:44 -08:00
SECURITY.md Adding Microsoft SECURITY.MD (#595) 2022-08-31 14:55:24 -07:00
dependabot.yml
lage.config.js
package.json Update eslint packages (#680) 2023-02-14 11:17:34 -08:00
prettier.config.js Use printWidth 120 2022-09-08 19:59:13 -07:00
renovate.json5 update renovate config 2022-09-09 17:37:03 -07:00
tsconfig.json Update @types packages (#606) 2022-09-08 17:33:28 -07:00
yarn.lock Update devDependency @types/tar to v6.1.4 (#690) 2023-02-17 15:00:01 -08:00

README.md

Just

npm version NPM Downloads

Just is a library that organizes build tasks for your JS projects. It consists of

  • a build task definition library
  • sane preset build flows for node and browser projects featuring TypeScript, Webpack and jest

Documentation

All the documentation is online at https://microsoft.github.io/just/

Building

This README contains only the instructions on how to build and contribute to the project. This is a monorepo that uses the lerna monorepo management utility. To get started, simply run the following:

yarn

and build all the packages this way:

yarn build

Development is usually done one package at a time. So go into each package and develop with the innerloop npm script:

cd packages/just-task
yarn dev

Tests are run with the test npm script:

cd packages/just-task
yarn test

Packages

Package Description
just-task The task definition library that wraps undertaker and yargs libraries
just-scripts A reusable preset of frequently used tasks in node and browser projects
just-scripts-utils A set of utilities for just-scripts
just-task-logger A shared pretty logger used to display timestamps along with a message
documentation The Docusaurus site content and styles which generates the Github page for this library

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com. Please refer Contribution guide for more details

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.