### Installing Project Dependencies (Shell) Source: https://github.com/filipeps/traduzir-paginas-web/blob/master/build-instructions.md Installs all necessary project dependencies listed in the `package.json` file before running any build commands. This is a required initial step to set up the development or build environment. ```Shell npm install ``` -------------------------------- ### Building Polyfill File (Shell) Source: https://github.com/filipeps/traduzir-paginas-web/blob/master/build-instructions.md Executes the npm script named `polyfill`. This command compiles the core-js polyfills into the `src/lib/polyfill.js` file. It must be run to generate the required polyfill bundle. ```Shell npm run polyfill ``` -------------------------------- ### Building Extension with Remote Source Maps (Shell) Source: https://github.com/filipeps/traduzir-paginas-web/blob/master/build-instructions.md Executes the default npm script `build`. This command compiles the extension and configures source maps to be loaded from a remote URL (like a GitHub repository). This reduces the extension's download size while still allowing debugging. ```Shell npm run build ``` -------------------------------- ### Building Extension with Local Source Maps (Shell) Source: https://github.com/filipeps/traduzir-paginas-web/blob/master/build-instructions.md Runs the npm script `build:local-sourcemaps`. This command compiles the extension code and includes the source maps directly within the extension folder, which is useful for local debugging purposes. ```Shell npm run build:local-sourcemaps ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.