Skip to content

Commit

Permalink
refactor(rollup): switch from webpack to rollup
Browse files Browse the repository at this point in the history
  • Loading branch information
ctaylo21 committed Jul 30, 2019
1 parent f6383bf commit fe2e6f4
Show file tree
Hide file tree
Showing 25 changed files with 34,098 additions and 8,563 deletions.
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
dist
docs
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dist/
node_modules/
docs/
package-lock.json
package-lock.json
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## 0.8.0 - 2019-07-28

### Updated

- Switch build to rollup instead of webpack

## 0.7.0 - 2019-07-28

### Updated
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ A web-based terminal powered by React. Check out the [demo](https://clever-poitr

## Table of Contents

- [Termy the Terminal](#Termy-the-Terminal)
- [Table of Contents](#Table-of-Contents)
- [Usage](#Usage)
- [Commands](#Commands)
- [`cd [DIRECTORY]`](#cd-DIRECTORY)
- [Termy the Terminal](#termy-the-terminal)
- [Table of Contents](#table-of-contents)
- [Usage](#usage)
- [Commands](#commands)
- [`cd [DIRECTORY]`](#cd-directory)
- [`pwd`](#pwd)
- [`ls [DIRECTORY]`](#ls-DIRECTORY)
- [`mkdir [DIRECTORY]`](#mkdir-DIRECTORY)
- [`cat [FILE]`](#cat-FILE)
- [`ls [DIRECTORY]`](#ls-directory)
- [`mkdir [DIRECTORY]`](#mkdir-directory)
- [`cat [FILE]`](#cat-file)
- [`help`](#help)

## Usage
Expand All @@ -43,7 +43,7 @@ A web-based terminal powered by React. Check out the [demo](https://clever-poitr
import React from 'react';
import ReactDOM from 'react-dom';
import { Terminal } from 'termy-the-terminal';
import 'termy-the-terminal/dist/Terminal.css';
import 'termy-the-terminal/dist/index.css';
import exampleFileSystem from './data/exampleFileSystem';

ReactDOM.render(
Expand Down
Loading

0 comments on commit fe2e6f4

Please sign in to comment.