version bump 0.11.8: CFB 1.0.0

- travis node 9 test
- demo refresh
This commit is contained in:
SheetJS 2017-11-05 14:18:35 -05:00
parent a0f3c244c6
commit a9ec3f15cf
3 changed files with 3 additions and 3 deletions

@ -10,7 +10,7 @@ into web pages with script tags:
The library can also be imported directly from JSX code with:
```js
import * as XLSX from 'xlsx';
import XLSX from 'xlsx';
```
This demo shows a simple JSX component transpiled in the browser using the babel

@ -1,3 +1,3 @@
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
import * as XLSX from 'xlsx';
import XLSX from 'xlsx';
import { saveAs } from 'file-saver';

2
react-native.js vendored

@ -1,5 +1,5 @@
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
import * as XLSX from 'xlsx';
import XLSX from 'xlsx';
import React, { Component } from 'react';
import { AppRegistry, StyleSheet, Text, View, Button, Alert, Image } from 'react-native';