Browse Source

Minor version bump, 4.1.1

pull/197/merge 4.1.1
Matthew Holt 10 years ago
parent
commit
04003739ad
  1. 76
      bower.json
  2. 2
      package.json
  3. 13
      papaparse.js
  4. 4
      papaparse.min.js
  5. 2
      player/player.html

76
bower.json

@ -1,40 +1,40 @@ @@ -1,40 +1,40 @@
{
"name": "papaparse",
"main": "papaparse.js",
"homepage": "http://papaparse.com",
"authors": [
"Matthew Holt"
],
"description": "Fast and powerful CSV parser for the browser. Converts CSV->JSON and JSON->CSV. Supports web workers and streaming large files.",
"keywords": [
"csv",
"parse",
"parsing",
"parser",
"delimited",
"text",
"data",
"auto-detect",
"comma",
"tab",
"pipe",
"file",
"filereader",
"stream",
"worker",
"workers",
"ajax",
"thread",
"threading",
"multi-threaded"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests",
"player"
]
"name": "papaparse",
"main": "papaparse.js",
"homepage": "http://papaparse.com",
"authors": [
"Matthew Holt"
],
"description": "Fast and powerful CSV parser for the browser. Converts CSV->JSON and JSON->CSV. Supports web workers and streaming large files.",
"keywords": [
"csv",
"parse",
"parsing",
"parser",
"delimited",
"text",
"data",
"auto-detect",
"comma",
"tab",
"pipe",
"file",
"filereader",
"stream",
"worker",
"workers",
"ajax",
"thread",
"threading",
"multi-threaded"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests",
"player"
]
}

2
package.json

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
{
"name": "papaparse",
"version": "4.1.0",
"version": "4.1.1",
"description": "Fast and powerful CSV parser for the browser that supports web workers and streaming large files. Converts CSV to JSON and JSON to CSV.",
"keywords": [
"csv",

13
papaparse.js

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
/*!
Papa Parse
v4.1.0
v4.1.1
https://github.com/mholt/PapaParse
*/
(function(global)
@ -34,20 +34,19 @@ @@ -34,20 +34,19 @@
Papa.FileStreamer = FileStreamer;
Papa.StringStreamer = StringStreamer;
// export to Node...
if (typeof module !== 'undefined' && module.exports) {
if (typeof module !== 'undefined' && module.exports)
{
// Export to Node...
module.exports = Papa;
}
// Wireup with RequireJS
else if (isFunction(global.define) && global.define.amd)
{
// Wireup with RequireJS
global.define(function() { return Papa; });
}
// ...or as browser global
else
{
// ...or as browser global
global.Papa = Papa;
}

4
papaparse.min.js vendored

File diff suppressed because one or more lines are too long

2
player/player.html

@ -5,7 +5,7 @@ @@ -5,7 +5,7 @@
<meta charset="utf-8">
<link rel="stylesheet" href="player.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script src="../papaparse.js"></script>
<script src="../papaparse.min.js"></script>
<script src="player.js"></script>
</head>
<body>

Loading…
Cancel
Save