
Security News
RubyGems Adds Cooldown Feature to Bundler for Newly Published Gems
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.
@felixgeelhaar/glaze-cli
Advanced tools
Command-line interface for the Glaze Design System
npm install -g @felixgeelhaar/glaze-cli
# or
pnpm add -g @felixgeelhaar/glaze-cli
# or
yarn global add @felixgeelhaar/glaze-cli
glaze init my-project
This will create a new project with the Glaze Design System pre-configured.
# In your project directory
glaze add
This command will:
# Add individual components
glaze add button card dialog
# Add all components
glaze add --all
# Generate React wrappers
glaze generate react
# Generate Vue wrappers
glaze generate vue
# Generate Angular wrappers (coming soon)
glaze generate angular
glaze init [project-name]Create a new project with Glaze Design System.
Options:
--framework <framework> - Choose framework (react, vue, vanilla)--typescript - Use TypeScript--tailwind - Include Tailwind CSS integration--git - Initialize git repository--install - Install dependencies immediatelyExample:
glaze init my-app --framework react --typescript --tailwind
glaze add [components...]Add Glaze components to your project.
Options:
--all - Add all components--framework <framework> - Specify framework wrappers--force - Overwrite existing filesExample:
glaze add button card --framework vue
glaze generate <framework>Generate framework-specific component wrappers.
Supported frameworks:
react - React componentsvue - Vue 3 componentsangular - Angular components (coming soon)svelte - Svelte components (coming soon)Example:
glaze generate react --output ./src/components
glaze configConfigure Glaze Design System settings.
Options:
--theme - Configure theme settings--tokens - Customize design tokens--css - Configure CSS outputExample:
glaze config --theme
glaze updateUpdate Glaze packages to the latest version.
Options:
--check - Check for updates without installing--major - Include major version updatesExample:
glaze update --check
.glazerc.jsonCreate a .glazerc.json file in your project root:
{
"framework": "react",
"typescript": true,
"components": ["button", "card", "dialog"],
"theme": {
"primary": "#6366f1",
"accent": "#f472b6",
"radius": "0.75rem"
},
"paths": {
"components": "./src/components",
"styles": "./src/styles"
}
}
# Set default framework
export GLAZE_FRAMEWORK=vue
# Set default output directory
export GLAZE_OUTPUT=./src/glaze
glaze init my-react-app \
--framework react \
--typescript \
--tailwind \
--git
Creates a project with:
glaze init my-vue-app \
--framework vue \
--typescript \
--git
Creates a project with:
glaze init my-vanilla-app \
--framework vanilla \
--git
Creates a project with:
cd my-react-app
glaze add --framework react
This will:
@felixgeelhaar/glaze-react and @felixgeelhaar/glaze-componentscd my-vue-app
glaze add --framework vue
This will:
@felixgeelhaar/glaze-vue and @felixgeelhaar/glaze-componentsglaze add --tailwind
This will:
@felixgeelhaar/glaze-enginetailwind.config.jsIssue: Components not styling correctly
# Ensure styles are imported
glaze doctor styles
Issue: TypeScript errors
# Generate type definitions
glaze generate types
Issue: Build errors
# Check configuration
glaze doctor config
Run commands with debug output:
DEBUG=glaze:* glaze init my-project
# Show help for any command
glaze help [command]
# Show version
glaze --version
# Check system compatibility
glaze doctor
MIT
FAQs
Command-line interface for the Glaze Design System
We found that @felixgeelhaar/glaze-cli 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
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.