![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@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
The npm package @design-sync/manager receives a total of 2 weekly downloads. As such, @design-sync/manager popularity was classified as not popular.
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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.