Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
backpack-transpiled
Advanced tools
Scripts used to publish a transpiled version of Skyscanner's Backpack design-system components.
Skyscanner's web components (for React) are published untranspiled. This is fine internally because we have a custom set of react-scripts that handle ES6 syntax and SASS files, but projects outside Skyscanner might not want to use backpack-react-scripts or set up custom bundler rules.
So this is a transpiled version of the components that uses vanilla JS and CSS.
This is shipped as one big package - but modern code-splitting/tree-shaking techniques should mean that your bundle size is not adversely affected
For component documentation, see https://backpack.github.io/.
Simply import the components you want to use, and render them.
import BpkButton from 'backpack-transpiled/bpk-component-button';
...
return (<BpkButton>Test</BpkButton>);
To use this in Next.js there are a couple of additional steps needed.
Install @zeit/next-css
and next-transpile-modules
.
Create a file called next.config.js
and add the following:
const withCSS = require("@zeit/next-css");
const nextTranspileModules = require("next-transpile-modules");
const withTM = nextTranspileModules(["backpack-transpiled"]);
const nextConfig = {
// Add your own config here if you want
};
module.exports = withTM(
withCSS({
cssModules: true,
cssLoaderOptions: {
url: false,
localIdentName: "[local]___[hash:base64:5]",
},
...nextConfig,
})
);
Installing and using backpack-transpiled
should now work as it would in a vanilla create-react-app.
Do not add dependencies directly to the package.json. These are populated automagically during the backpack-pulling process by running npm run pull-backpack:dependencies
.
(Adding dev-dependencies is fine.)
You should have node installed.
npm ci
To pull in and setup the latest backpack
.
Note this will take a long time, and will possibly update the main package.json
dependencies of this project.
npm run backpack-pull
To transpile files into a local dist
directory ready for publishing.
npm run transpile
To publish
Note this will first perform the tranpilation step.
npm run release
or
npm run release:patch
or
npm run release:minor
or
npm run release:major
Contributions are welcome. Please fork and submit a PR if you want to add or change a feature.
0.0.4
FAQs
Transpiled version of Skyscanner's design system (Backpack)
The npm package backpack-transpiled receives a total of 4 weekly downloads. As such, backpack-transpiled popularity was classified as not popular.
We found that backpack-transpiled demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.