Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@lazy-bee/basic

Package Overview
Dependencies
Maintainers
2
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lazy-bee/basic

## Project setup ``` npm install ```

  • 0.1.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
2
Weekly downloads
 
Created
Source

Lazybee-component

Install

  • Add the following code to package.json in your vue project (created by vue-cli v3 is preferred)

      "dependencies": {
          "lazybee-component": "git+ssh://git-codecommit.ap-northeast-1.amazonaws.com/v1/repos/lazybee-component#dev"
      }
    

    And run:

    yarn install
    
  • Lazybee-component requires stylus and stylus-loader. If you haven't install them, please run:

    yarn add stylus-loader stylus
    
  • Navigate to your applications main entry point. In most cases this will be index.js or main.js. In this file you will import Lazybee-component and tell Vue to use it.

    import Vue from 'vue'
    import LazybeeComponent from 'lazybee-component'
    
    Vue.use(LazybeeComponent);
    
  • Viola! Now you can use lazybee components with x-app or x-layout components!

    <template>
      <div>
        <x-alert value=true message="sample alert"></x-alert>
        <x-layout type="admin"></x-layout>
      </div>
    </template>
    

    Note: We must include x-app or x-layout (which has v-app inside) to include some CSS from v-app. Otherwise the styles of Vuetify components may not be correct.

Demo (storybook)

Storybook

  • Storybook

Run Demo

$ yarn install
$ yarn serve:demo

Contributing

For details, please refer to Contributing guide

Branch

releasemasterdev
Alt textAlt text--

Versions

A-BB-CCC

Major (A)Minor (BB)Release number (serial) (CCC)
Component library / package changes
For example: remove vue-echarts
New component,
interface change
Everytime merge into master (Automatically)

Script command

$ yarn serve:src

$ yarn build:src # this builds component.js, component.css under dist/

$ yarn lint:src

$ yarn serve:demo # serve storybook

$ yarn build:demo # build storybook

$ yarn install:package

$ yarn release:component # build both lazybee-component and storybook

Todos

  • Renew UI design
  • Update documentation
  • Unit test
  • Consider Vuetify a-la-carte -> NO!
  • Consider setting alias to vuetify components -> NO!
  • Consider Plugin-lize: see Plugin Development Guide
  • Remove unneeded components from doc
  • Clarify Vuetify to lazybee users
  • Define installation method (Upgrade by lazybee-cli? Version control?)
  • CI / CD (git add tag automatically)
  • Update Storybook

Keywords

FAQs

Package last updated on 22 Jan 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc