Skip to content
This repository has been archived by the owner on Dec 20, 2022. It is now read-only.

Commit

Permalink
Update Readme and add changelog/license files
Browse files Browse the repository at this point in the history
  • Loading branch information
CapMousse committed Sep 7, 2016
1 parent 4ab19a0 commit a5d373b
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 8 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Change Log
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [3.0.0] - 2016-09-07
### Added
- CSS loading
- Changelog file
- License file
- Travis ci

### Fixed
- Multiple uses of Include crash
- External js crash
- External js with module name crash
- Stability
8 changes: 8 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
The MIT License (MIT)
Copyright (c) 2011-2016 : Jérémy Barbe and other contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
17 changes: 11 additions & 6 deletions README.markdown
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Include.js
# Include.js [![Build Status](https://travis-ci.org/CapMousse/include.js.svg?branch=master)](https://travis-ci.org/CapMousse/include.js)

**Include.js** is a tiny (1,2ko minified and gziped) Javascript loader. It can load normal javascript files or css but is more efficient with **web modules**.

Expand All @@ -9,7 +9,7 @@ Include.js was tested on :
- Chrome √
- Opera √
- Safari √
- IE √ (IE 7+)
- IE (> 6) √

## How to use

Expand Down Expand Up @@ -71,12 +71,17 @@ include('path/to/css.css', function(){

If you already use a script loader you can replace it with **Include.js** without problemes and without rewriting code. `define()` and `require()` are supported by **Include.js**. Let's be light !

## Tests

Unit test are made with [Jasmine](http://pivotal.github.com/jasmine/) and can be run by launching `Tests/SpecRunner.html` on any browser.
## Developed by

- Jérémy Barbe
- [jeremy.sh](http://jeremy.sh)
- [@capitainemousse](https://twitter.com/capitainemousse)

## About

Created by [Jérémy Barbe](http://jeremy.sh)
**Include.js** is distributed under the MIT license.
**Include.js** is distributed under the MIT license.

## License

See LICENSE file
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "include.js",
"version": "2.0.1",
"description": "**Include.js** is a tiny (800b minified and gziped) Javascript loader. It can load normal javascript files but is more efficient with **web modules**.",
"version": "3.0.0",
"description": "**Include.js** is a tiny Javascript loader. It can load normal javascript files but is more efficient with **web modules**.",
"main": "include-min.js",
"dependencies": {},
"devDependencies": {
Expand Down

0 comments on commit a5d373b

Please sign in to comment.