just
just copied to clipboard
The task library that just works
I have 5 services, i want to register a same task for each service,, i tried as follows, but it breaks. ``` let { task, logger } = require("just-task"); let...
It looks like caching was broken or mistakenly removed in #356 It seems like the automatic caching was removed here: https://github.com/microsoft/just/commit/df664ff35c4b42a628c347040eabb80a2c5f224e#diff-d14e97d66c8036bdff668e72e7c23a69 Any reason behind this?
I get errors running `yarn gen` ``` Error: Cannot find module 'package.json' Require stack: - /Users/lifeiscontent/Source/just-test/node_modules/just-stack-monorepo/plopfile.repo.js - /Users/lifeiscontent/Source/just-test/node_modules/node-plop/lib/node-plop.js - /Users/lifeiscontent/Source/just-test/node_modules/node-plop/lib/index.js - /Users/lifeiscontent/Source/just-test/node_modules/plop/src/plop.js - /Users/lifeiscontent/Source/just-test/node_modules/plop/bin/plop.js ```
Feature Ask: When Just prints task started and finished logs it should also print package name along with it When packages build are running in parallel it is difficult to...
Ok, I can see that you can pass args with `build` task eg `yarn build --mode development` and it seems that it does not work with `start` and I do...
## Overview In large monorepos with many levels of indirection between a task being defined and being invoked, it can be difficult to trace back to where a problem exists....
## Overview Add a task for [mocha](https://mochajs.org/) ## Test Notes
I was planning to override webpack config with [typings-for-css-modules-loader](https://github.com/TeamSupercell/typings-for-css-modules-loader) but I find it a bit overwhelming figuring out what and where exactly I should alter to make it working. I...
I try to build (`npm run build`) multiple entry points for my app. This fails most of the time. Building 6 times only works once (not statistically correct). I don't...
According to documentation, task name should be visible in the output. https://microsoft.github.io/just/docs/logging ```js const { task, tscTask, parallel } = require("just-scripts"); const { exec } = require("just-scripts-utils"); task("hello", async() =>...