
Security News
High Salaries No Longer Enough to Attract Top Cybersecurity Talent
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
@design-sync/manager
Advanced tools
Plugable design tokens manager
Install package:
# npm
npm install @design-sync/manager
# yarn
yarn add @design-sync/manager
# pnpm
pnpm install @design-sync/manager
# bun
bun install @design-sync/manager
Usage:
import { TokensManager } from '@design-sync/manager'
const tokensManager = new TokensManager();
tokensManager.use({
name: 'my-plugin',
build: async (manager) => {
const walker = manager.getWalker();
walker.walk((token) => {
// do something with token
});
return [{
name: 'my-plugin-emitted-file.css',
content: 'transformed tokens or whatever',
}];
},
});
// what will happen?
// 1. resolve config from .design-sync.config file in current working directory or user home directory
// 2. override config with the provided config
// 3. fetch tokens from the provided uri or use the provided tokens
// 4. run plugins
// 5. write emitted files to disk
await tokensManager.run({
// override config
uri: 'gh:owner/repo#branch',
});
console.log("done");
corepack enable
pnpm install
pnpm dev
Made with 💛
Published under MIT License.
FAQs
Plugable design tokens manager
We found that @design-sync/manager demonstrated a healthy version release cadence and project activity because the last version was released less than 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
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.
Security News
Corepack will be phased out from future Node.js releases following a TSC vote.