Skip to content

Commit

Permalink
chore(lerna): publishing package
Browse files Browse the repository at this point in the history
  • Loading branch information
codebender828 committed Mar 15, 2020
1 parent d29b1c8 commit 7ab50dc
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 20 deletions.
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@

<h2 align="center">Build scalable and accessible Vue.js applications with ease.</h2>

**@chakra-ui/vue** gives you a set of accessible and composable Vue components that you can use to build your favourite applications and sites.
**chakra-ui-vue** gives you a set of accessible and composable Vue components that you can use to build your favourite applications and sites.

> Hello, friend! 😄
> **@chakra-ui/vue** is currently under development. A more detailed documentation site is in the pipeline soon! Check out our [storybook]() and [Codesandbox Vue & Nuxt Starters](https://codesandbox.io/s/chakra-ui-vue-starter-2sy0g).
> **chakra-ui-vue** is currently under development. A more detailed documentation site is in the pipeline soon! Check out our [storybook]() and [Codesandbox Vue & Nuxt Starters](https://codesandbox.io/s/chakra-ui-vue-starter-2sy0g).
## Features

Expand Down Expand Up @@ -53,7 +53,7 @@ new Vue({
```
**2. Wrap your application inside the Chakra `ThemeProvider`.** We also recommend that you include the `CSSReset` component to normalize all browser styling.

_In the `App.vue` file._
_In your `App.vue` file._
```html
<template>
<ThemeProvider>
Expand Down Expand Up @@ -114,22 +114,21 @@ export default {
```

### chakra-ui/vue Codesandbox starters
- [**_Vue Starter_**](https://codesandbox.io/s/chakra-ui-vue-starter-2sy0g)
- [**_Nuxt Starter_**](https://codesandbox.io/s/chakra-ui-nuxt-demo-f8tq4)
- [Vue Starter](https://codesandbox.io/s/chakra-ui-vue-starter-2sy0g)
- [Nuxt Starter](https://codesandbox.io/s/chakra-ui-nuxt-demo-f8tq4)

### Storybook Components
You can also view all developed components in [Storybook](https://chakra-ui-vue.netlify.com)!

### Development for Contributing:
Interested in contributing? See our open issues! Remember to take a look at our CONTRIBUTORS guide.
Interested in contributing? See our open issues! Remember to take a look at our [CONTRIBUTORS](../../.github/CONTRIBUTING.md) guide.

```bash
yarn install
yarn bootstrap
yarn dev
```


#### Project TODOs:
- [ ] Documentation site (Ongoing)
- [ ] Set up type system for plugin & components export with Typescript
Expand Down
6 changes: 3 additions & 3 deletions packages/chakra-ui-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,14 @@ export default {
```

### chakra-ui/vue Codesandbox starters
- [**_Vue Starter_**](https://codesandbox.io/s/chakra-ui-vue-starter-2sy0g)
- [**_Nuxt Starter_**](https://codesandbox.io/s/chakra-ui-nuxt-demo-f8tq4)
- [Vue Starter](https://codesandbox.io/s/chakra-ui-vue-starter-2sy0g)
- [Nuxt Starter](https://codesandbox.io/s/chakra-ui-nuxt-demo-f8tq4)

### Storybook Components
You can also view all developed components in [Storybook](https://chakra-ui-vue.netlify.com)!

### Development for Contributing:
Interested in contributing? See our open issues! Remember to take a look at our CONTRIBUTORS guide.
Interested in contributing? See our open issues! Remember to take a look at our [CONTRIBUTORS](../../.github/CONTRIBUTING.md) guide.

```bash
yarn install
Expand Down
33 changes: 25 additions & 8 deletions packages/chakra-ui-core/package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,29 @@
{
"name": "@chakra-ui/vue",
"version": "0.2.2",
"description": "Build Accessible and Scalable Vue.js applications with ease",
"author": "Jonathan Bakebwa <jonas@akkadu-team.com>",
"license": "MIT",
"description": "Build Accessible and Resonsible Vue.js applications with ease",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"unpkg": "dist/umd/index.min.js",
"sideEffects": false,
"maintainers": [
"Jonathan Bakebwa <jonas@akkadu-team.com>"
],
"author": "Jonathan Bakebwa <jonas@akkadu-team.com>",
"license": "MIT",
"homepage": "https://github.com/chakra-ui/chakra-ui-vue",
"repository": "https://github.com/chakra-ui/chakra-ui-vue",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "yarn clean && rollup -c && rollup -c --environment MINIFY",
"dev": "rollup --config rollup.dev.config.js --watch",
"test": "echo testing ...",
"clean": "rm -rf ./dist"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"src"
"dist"
],
"dependencies": {
"@styled-system/css": "^5.0.23",
Expand All @@ -42,5 +46,18 @@
"devDependencies": {
"core-js": "^3.4.5"
},
"keywords": [
"vue",
"ui",
"design-system",
"vue-components",
"uikit",
"accessible",
"components",
"emotion",
"library",
"styled-system",
"kittens ;)"
],
"gitHead": "cb7ffb7adeb926b99c75f195300d09780e8910e6"
}
8 changes: 7 additions & 1 deletion packages/chakra-ui-core/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,13 @@ const commons = {
]
}

const bannerTxt = `/*! Chakra-ui/vue v${pkg.version} | MIT License | github.com/codebender828/kiwi-ui */`
const bannerTxt = `
/*
* ! @chakra-ui/vue v${pkg.version} by Jonathan Bakebwa @codebender828
* MIT License
* https://github.com/chakra-ui/chakra-ui-vue
*/
`

const baseFolder = './src/'

Expand Down
2 changes: 1 addition & 1 deletion packages/chakra-ui-docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.1.1",
"description": "Chakra UI Vue documentation site",
"author": "codebender828",
"private": false,
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
Expand Down

0 comments on commit 7ab50dc

Please sign in to comment.