npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bz-genome-styles

v0.11.0-rc.6

Published

Create the new Bizagi world. Better interfaces for better products.

Downloads

74

Readme

Genome

Create the new Bizagi world. Better interfaces for better products.

macOS step by step

Please remember to have installed Xcode app from the App Store. If you have trouble with EACCES, please execute sudo npm -g config set user root

  1. Ask for permissions to access and clone the code of genome
  2. Open new Terminal at folder code: System Preferences > Keyboard > Shortcuts > Services Enable New Terminal at Folder
  3. Install Node.js
  4. Install Grunt's command line interface (CLI) sudo npm install -g grunt-cli
  5. Install Angular CLI sudo npm install -g @angular/cli
  6. Install Compass sudo gem install sass
  7. Install npm packages sudo npm install
  8. Run sudo npm start and in another tab sudo grunt to get Genome running

How to create a new page

  1. Duplicate page-base folder
  2. Go to page-base.component.ts and rename PageBaseComponent (component name), page-base.component (component path) accordingly to your component name and path
  3. Go to page-base.component.spec.ts and replicate the rename process of component name and path
  4. Rename folder and files accordingly to your component name
  5. Go to app-routing.module.ts and import the new component, adittionaly add the menu path in routes { path: 'base', component: PageBaseComponent}
  6. Go to app.module.ts and import the new component
  7. Go to genome.d.ts and declare the component module
  8. Go to menu.component.html and add the path menu item of the component

Ejecucion paralela para hacer debug y ver los cambios en un proyecto que usa la libreria

  1. En la carpeta node_modules del proyecto principal (Ej. customer portal) elimine la carpeta correspondiente a bz-genome-styles

  2. Cree un link simbolico

 mklink /J "C:\dv\customer-portal\CustomerPortal.Web\WebContent\node_modules\bz-genome-styles" "C:\dv\GenomeAngular\dist\bz-genome-angular"
  1. instale grunt de manera global
npm install -g grunt-cli
  1. Ejecute grunt desde una consola sobre la raiz del proyecto de genome
cd C:\Users\Julian\Documents\bizagi\genome grunt
  1. en el proyecto principal en la hoja styles.css importe el genome que se encuentra en el link simbolico
@import '~bz-genome-styles/themes/cloud/main.scss';