Danny
Danny
Adds `jenkins#validateJenkinsfile`. closes #86
Add an RPC style method on `jenkins` for validating a `Jenkinsfile` (see [pipeline docs](https://jenkins.io/doc/book/pipeline/development/#linter)) usage something like: ```ts jenkins.validate(Jenkinsfile: string, (err, data) => { if (err) throw err; something(data); })...
I too was getting burned with _not_ semicolon matching (`[^;]`). Turns out there are a few things that the devs on my team like to do that cause problems with...
For simple uses cases like: ```yml - task: build-image ... inputs: - name: my-build-output-from-another-task path: . params: - DOCKERFILE: | FROM nginx COPY . /usr/share/nginx/html ``` this is attractive for...
Interest in supporting Bitbucket [Data Center](https://www.atlassian.com/enterprise/data-center) (the self-managed Atlassian product that [AFAIK] is API-compatible with Bitbucket Cloud?) Same impl probably applicable for GitLab Cloud/Self-Managed. I need to do simple scaffolding...
Dunno if this **could** be a thing... but it'd be great to be able to invoke snippets via keyboard shortcuts. Burden for supporting that is agreeably _not_ on this repo....
Supports serialization of objects into an array instead of merging into hash. Adds a property to `options` (`isArray` Boolean = false). Updates docs. Closes [#10](https://github.com/rse/grunt-merge-json/issues/10)
Was poking around npm looking for easy sol'n to this problem: Have dir `src` with files `a.json`, `b.json`, and `c.json`: ``` js // a.json: { "foo": "bar"} // b.json {...
Adds `skipGit` option. Closes #341.
Having seen the [`SingleSpa*Generator#finished()` src](https://github.com/single-spa/create-single-spa/blob/e5b4fd4f58d2083b49287c9bcd5a4a30c7fa191c/packages/generator-single-spa/src/react/generator-single-spa-react.js#L223C15-L237), pointing out I've never seen this actually print to stdout. ### Steps to Reproduce `pnpx [email protected] --skipInstall` produces: ``` ? Directory for new project __test-output...