just icon indicating copy to clipboard operation
just copied to clipboard

The task library that just works

Results 82 just issues
Sort by recently updated
recently updated
newest added

We've seen this primarily in Azure DevOps linux pipeline agents (doesn't seem to repro on windows), where we have a just task with multiple parallel webpack builds and sometimes there...

Right now, just-scripts only works with commonjs configs. Given how the ecosystem is moving to esm, this will become a point of frustration. If you have a package with `type:...

### Issue #1 **Current:** ```js tscTask({build:'tsconfig.json', pretty: true}) ``` ``` Error: Command failed: "/path-to-project/node_modules/typescript/lib/tsc.js" --pretty --build "/path-to-project/tsconfig.json" ❌ error TS6369: Option '--build' must be the first command line argument. ```...

**Repro** ```js const { task, logger, option, argv } = require('just-task'); option('name', {describe: 'user name or something'}); task('blimey', 'An exclamation of surprise.', function() { logger.info(`blimey! ${argv().name}`); }); ``` ### Actual...

typedoc has a known issue that it prints one byte (a single newline) to stderr even when successful (https://github.com/TypeStrong/typedoc/issues/1566). If I run typedoc as part of my tasks with just,...

Currently, one has to do: ``` just-scripts build ``` to run *1* command. We can get rid of the need of lots of just.config.ts in monorepo packages if we an...

The docs at https://microsoft.github.io/just/tasks/logging.html are missing the most important part of the page (the logging output itself): ![image](https://user-images.githubusercontent.com/10719780/115309678-75f64a80-a121-11eb-90d9-47709b54689d.png)

Add a Task for for watch mode or dev mode. Where if a file changes under a provided folder structure we can run npm scripts. This will enable us to...

As long as the `localIdentName` was set in the parameter the modules parameter was ignored. This resulted in the use of modules even when modules was set to false explicitly...

Hello! I have the same error as here https://github.com/microsoft/just/issues/236 ```console ERROR in ./src/styles/styles.css (./node_modules/css-loader/dist/cjs.js??ref--4-1!./node_modules/postcss-loader/src??ref--4-2!./src/styles/styles.css) Module build failed (from ./node_modules/css-loader/dist/cjs.js): ValidationError: CSS Loader Invalid Options options.modules should be boolean options.modules should...