ehmicky
ehmicky
Great project! Some users like me use RSS feed readers to catch up with new releases. However this is not possible with this repository, as it only works when there...
## Background ### Custom Node.js version Sites can specify a custom Node.js version by using a `.nvmrc` file, `.node_version` file or `NODE_VERSION` environment variable. ### Node.js versioning Node.js maintains [a...
## Background Sites can specify a custom Node.js version by using a `.nvmrc` file, `.node_version` file or `NODE_VERSION` environment variable. ## Problem Specifying the minor/patch version number for Node.js is...
We run `nvm install` to check what the latest matching Node.js version is (e.g. `NODE_VERSION` `12` would match `12.18.3`), and download it unless it is available locally: https://github.com/netlify/build-image/blob/450c24b893036c2813a0b0d0a2a05bcdd81935a4/run-build-functions.sh#L221 Even if...
Our CI pipeline is too slow. @erezrokah just improved it by using stronger machines (https://github.com/netlify/build-image/pull/743 and https://github.com/netlify/build-image/pull/744). However, this is still lasting more than 20 minutes. We should see what...
A user [reported](https://community.netlify.com/t/unable-to-publish-function-using-postgres/12293/2) the following build error: ``` gyp info it worked if it ends with ok gyp info using [email protected] gyp info using [email protected] | linux | x64 gyp...
Suggestion for Node.js: default to `package.json` `engines.node` field (if present) instead of `last 2 versions`. Use case: I am writing Node.js libraries using Node `11` syntax, but compiling with Babel...
`eslint --report-unused-disable-directives` is not reported when a `` is defined in Markdown but is unused (i.e. could be removed). `.eslintrc.yml`: ```yml plugins: [markdown] rules: no-inline-comments: 2 ``` `README.md`: ````md ```js...
URL parameters should be percent-encoded using `encodeURIComponent()`. https://github.com/netlify/js-client/blob/b0bf6d41159d936747f16d63d02025709dcf7fc2/src/methods/url.js#L19 This fix should be a major release, since some clients might currently do this percent-encoding themselves. This is the case for example...
The default `User-Agent` HTTP request header should include the following information for debugging: `js-client` version, Node.js version, OS. https://github.com/netlify/js-client/blob/366ffa153bd67fec620ad58e451c06b2fd037308/src/index.js#L17