@striven-erp/striven-fullscreen
Version:
Take any element and make it full screen
47 lines (30 loc) • 1.13 kB
Markdown
# CONTRIBUTING
Anyone can contribute to the Striven Fullscreen package. Please open an issue for any feature requests, bug fixes, and enhancements that you would like to be implemented into the editor. Keep in mind that this editor has been tailored to the needs of the Striven ERP Platform, so some requests may not be fulfillable.
Please open all pull requests to the ```dev``` branch.
## Addressing Issues
When resolving a posted issue, please ask a maintainer to assign the issue to you prior to opening a pull request.
## Install Dependencies
```sh
$ npm install
```
```sh
$ cd demo && npm install
```
## Symlink Development Package
Initialize ```@striven-erp/striven-fullscreen``` symlink.
```sh
$ npm link
```
Symlink ```@striven-erp/striven-fullscreen``` in the development environment.
```sh
$ cd demo && npm link @striven-erp/striven-editor
```
## Start Webpack
```sh
$ npx webpack -w
```
## Start Development Server
Start the development server in ```demo``` and go to ```http://localhost:8080/``` to begin developing.
```sh
$ cd demo && npm run serve
```