Skip to content

Commit

Permalink
push v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Langer committed Jan 6, 2017
1 parent 4eeb1ba commit b13ac5b
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Changelog

## corrode v1.0.2
* Update ESDoc to v0.5.2 for better ES7 support

## corrode v1.0.1
* Update lodash from 4.16.1 to 4.17.2
* Update readable-stream from 2.1.5 to 2.2.2
Expand Down
2 changes: 2 additions & 0 deletions doc/configuration.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Configuration

Corrode provides some configuration-options. These are either defaults, safeguards or advanced-user-stuff.

Corrode accepts an object as its first parameter, containing options.
Expand Down
2 changes: 2 additions & 0 deletions doc/getting-started.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Getting started

## Introduction
This document will guide you through most of the basic functionality of corrode by example.
Our goal is to parse a structured file for storing flat, arbitrary data.
Expand Down
2 changes: 2 additions & 0 deletions doc/overview.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Overview

## Components
Corrode consists of 5 components:
1. The [VariableStack](https://doc.esdoc.org/github.com/screeny05/corrode/class/src/variable-stack.js~VariableStack.html). It handles all things variables when reading data, pushing structures and looping bytes.
Expand Down
17 changes: 11 additions & 6 deletions esdoc.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
{
"source": "src",
"destination": "esdoc",
"plugins": [
{
"name": "esdoc-es7-plugin"
}
],
"test": {
"type": "mocha",
"source": "test"
},
"manual": {
"overview": ["doc/overview.md"],
"changelog": ["CHANGELOG.md"],
"tutorial": ["doc/getting-started.md"],
"overview": ["doc/overview.md"],
"configuration": ["doc/configuration.md"]
},
"experimentalProposal": {
"classProperties": true,
"objectRestSpread": true,
"decorators": true,
"doExpressions": true,
"functionBind": true,
"asyncGenerators": true,
"exportExtensions": true,
"dynamicImport": true
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "corrode",
"version": "1.0.1",
"version": "1.0.2",
"description": "A batteries-included library for reading binary data.",
"main": "dist/index.js",
"scripts": {
Expand Down

0 comments on commit b13ac5b

Please sign in to comment.