https://github.com/caxy/handsontable-splitcell-plugin
HandsOnTable plugin for splitting cells
https://github.com/caxy/handsontable-splitcell-plugin
Last synced: 9 months ago
JSON representation
HandsOnTable plugin for splitting cells
- Host: GitHub
- URL: https://github.com/caxy/handsontable-splitcell-plugin
- Owner: caxy
- License: mit
- Created: 2017-02-15T23:11:35.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-16T22:23:00.000Z (over 9 years ago)
- Last Synced: 2025-06-10T10:10:17.601Z (about 1 year ago)
- Language: JavaScript
- Size: 172 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Split Cell plugin for HandsOnTable
## Install
Install via yarn (or npm)
```bash
$ yarn add handsontable-splitcell-plugin # or npm install --save handsontable-splitcell-plugin
```
Install via bower
```bash
$ bower install --save handsontable-splitcell-plugin
```
## Usage
...
## Development
This uses webpack to compile the plugins into the dist directory. The JS files are passed through [babel-loader](https://github.com/babel/babel-loader) and are bundled into a single `plugin.js` file for each plugin directory.
The webpack configuration expects the list of plugins it needs to compile in `config/project.config.js` at property `config.pluginNames`. Therefore, if a plugin directory name is changed, the plugin name in `config/project.config.js` must also be changed.
#### Setup
```bash
$ yarn install
```
#### To compile for release:
```bash
$ yarn run compile
```