Skip to content

Commit

Permalink
Fix linux module
Browse files Browse the repository at this point in the history
  • Loading branch information
isc30 committed Sep 21, 2017
1 parent 7976cc1 commit d884780
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![Build Status](https://travis-ci.org/isc30/linq-collections.svg?branch=master)](https://travis-ci.org/isc30/linq-collections)
[![Coverage Status](https://coveralls.io/repos/github/isc30/linq-collections/badge.svg?branch=master)](https://coveralls.io/github/isc30/linq-collections?branch=master) <- Please I need test contributors :D

# Linq-Collections: Linq (IEnumerable, ...) + Collections (List, Dictionary, ...)
# Linq-Collections: (IEnumerable, ...) + (List, Dictionary, ...)
Best performance and 100% strongly/statically typed *Linq* implementation for *TypeScript* (*ECMAScript 5*)
#### This library uses custom iterators and deferred execution mechanisms that ensure minimal CPU and RAM usage (no infinite array regenerations like other libraries do!!) ####
#### Strictly following C# original documentation
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "linq-collections",
"version": "1.0.2",
"description": "Linq-Collections: Linq (IEnumerable, ...) + Collections (List, Dictionary, ...)",
"main": "./build/src/linq.js",
"version": "1.0.3",
"description": "Linq-Collections: (IEnumerable, ...) + (List, Dictionary, ...)",
"main": "./build/src/Linq.js",
"files": [
"build/src",
"readme.md"
"README.md"
],
"typescript": {
"definition": "./build/src/linq.d.ts"
"definition": "./build/src/Linq.d.ts"
},
"typings": "./build/src/linq.d.ts",
"types": "./build/src/linq.d.ts",
"typings": "./build/src/Linq.d.ts",
"types": "./build/src/Linq.d.ts",
"author": {
"name": "Ivan Sanz",
"email": "ivansanzcarasa@gmail.com",
Expand Down

0 comments on commit d884780

Please sign in to comment.