Os bins foram ordenados pelo início dos 4 primeiros dígitos.
- 4011
- 4389 3 5
- 4514 1 6
- 4576
| /** | |
| * SVG Fixer | |
| * | |
| * Fixes references to inline SVG elements when the <base> tag is in use. | |
| * Firefox won't display SVG icons referenced with | |
| * `<svg><use xlink:href="#id-of-icon-def"></use></svg>` when the <base> tag is on the page. | |
| * | |
| * More info: | |
| * - http://stackoverflow.com/a/18265336/796152 | |
| * - http://www.w3.org/TR/SVG/linking.html |
| /** | |
| * @see {@link https://hyper.is/} | |
| */ | |
| module.exports = { | |
| config: { | |
| updateChannel: 'stable', | |
| fontSize: 14, | |
| fontFamily: 'Operator Mono', | |
| fontWeight: 'normal', | |
| fontWeightBold: 'bold', |
| name: promote-dev-cool-package | |
| on: | |
| push: | |
| paths: | |
| - packages/cool-package/** | |
| branches-ignore: | |
| - master | |
| - refs/tags/* |
Node.js Compatibility: npm 8 is included with Node.js 16 and is expected to be included with Node.js 17. It drops support for Node.js 10, which is no longer maintained.
Package Lockfile Format: npm 8 uses package-lock.json format v2 by default, which is backwards compatible with npm 7.
Override Option: npm 8 introduces the --override option, which allows you to individually override the configurations in the .npmrc files.
Updated Dependencies: npm 8 updates many dependencies and removes others, which can lead to different behaviors and new features.
Strict Peer Dependencies: npm 7 introduced automatic installation of peer dependencies, which continues in npm 8. However, npm 8 has made this installation stricter. If a package cannot be installed due to a conflicting peer dependency, npm 8 will block the installation.
| FROM node:22.14-bullseye-slim | |
| WORKDIR /usr/src/app | |
| COPY package*.json ./ | |
| RUN apt-get update && apt-get install -y \ | |
| curl \ | |
| python3 \ | |
| make \ |
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Run server", | |
| "type": "node", | |
| "request": "launch", | |
| "runtimeExecutable": "npm", | |
| "runtimeArgs": [ | |
| "run", |