Skip to content

Commit

Permalink
[release] 6.5.0 🚀🍣
Browse files Browse the repository at this point in the history
  • Loading branch information
alextoudic committed Apr 26, 2017
1 parent 18ebf16 commit 33e28d8
Show file tree
Hide file tree
Showing 9 changed files with 881 additions and 686 deletions.
9 changes: 9 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"root": true,
"parser": "babel-eslint",
"env": {
"es6": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"extends": "standard",
"rules": {}
}
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
[![Test Coverage](https://codeclimate.com/github/chirashijs/chirashi/badges/coverage.svg)](https://codeclimate.com/github/chirashijs/chirashi/coverage)
[![Build Status](https://travis-ci.org/chirashijs/chirashi.svg?branch=master)](https://travis-ci.org/chirashijs/chirashi)

## Intro

Chirashi.js is a utils library meant to make DOM manipulation and events management easier and faster to read and write without adding overcomplecated internal logic.

The library designed as modules of single functions allowing to reduce size of your production build to only the needed code (thanks to [esnext modules](https://github.com/dherman/defense-of-dot-js/blob/master/proposal.md)).

## Get started

Find API documentation, guide and more on [chirashi.js.org](http://chirashi.js.org).
Expand All @@ -15,7 +21,7 @@ Find API documentation, guide and more on [chirashi.js.org](http://chirashi.js.o

### Installation

#### Using npm
#### Using npm / yarn (recommended)

```
yarn add chirashi
Expand All @@ -37,7 +43,7 @@ ready(() => {

#### Standalone

You can download [chirashi.js](https://github.com/chirashijs/chirashi/releases/download/5.2.4/chirashi.js) or [chirashi.min.js](https://github.com/chirashijs/chirashi/releases/download/5.2.4/chirashi.min.js) and load it using a script tag. You can also use CDN version of those files from unpkg using the link [https://unpkg.com/chirashi@5.2.4/dist/chirashi.min.js](https://unpkg.com/chirashi@5.2.4/dist/chirashi.min.js). It'll create an instance of Chirashi on your window. Then use as following example
You can download [chirashi.js](https://github.com/chirashijs/chirashi/releases/download/6.5.0/chirashi.js) or [chirashi.min.js](https://github.com/chirashijs/chirashi/releases/download/6.5.0/chirashi.min.js) and load it using a script tag. You can also use CDN version of those files from unpkg using the link [https://unpkg.com/chirashi@6.5.0/dist/chirashi.min.js](https://unpkg.com/chirashi@6.5.0/dist/chirashi.min.js). It'll create an instance of Chirashi on your window. Then use as following example

```js
Chirashi.ready(function () {
Expand Down
2 changes: 1 addition & 1 deletion dist/chirashi.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Chirashi.js v6.5.0-rc
* Chirashi.js v6.5.0
* (c) 2017 Alex Toudic
* Released under MIT License.
**/
Expand Down
2 changes: 1 addition & 1 deletion dist/chirashi.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Chirashi.js v6.5.0-rc
* Chirashi.js v6.5.0
* (c) 2017 Alex Toudic
* Released under MIT License.
**/
Expand Down
4 changes: 2 additions & 2 deletions dist/chirashi.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/chirashi.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Chirashi.js v6.5.0-rc
* Chirashi.js v6.5.0
* (c) 2017 Alex Toudic
* Released under MIT License.
**/
Expand Down
200 changes: 100 additions & 100 deletions docs/index.md

Large diffs are not rendered by default.

31 changes: 17 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chirashi",
"version": "6.5.0-rc",
"version": "6.5.0",
"description": "Fast, modular, lightweight and simple DOM and events manipulation.",
"keywords": [
"DOM",
Expand Down Expand Up @@ -39,36 +39,39 @@
"url": "https://github.com/chirashijs/chirashi/issues"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.4.0",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.0.0",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.2.1",
"babel-preset-env": "^1.4.0",
"babelrc-rollup": "^3.0.0",
"chai": "^3.5.0",
"eslint": "^3.17.1",
"eslint-config-standard": "^7.0.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"eslint-plugin-standard": "^3.0.1",
"gzip-size": "^3.0.0",
"karma": "^1.5.0",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-es6-shim": "^1.0.0",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.4",
"karma-safari-launcher": "^1.0.0",
"karma-webpack": "^2.0.2",
"karma-webpack": "^2.0.3",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"phantomjs-prebuilt": "^2.1.14",
"rollup": "^0.41.4",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-local-resolve": "^1.0.7",
"uglify-js": "^2.8.9",
"webpack": "^2.2.1"
"uglify-js": "^2.8.22",
"webpack": "^2.4.1"
},
"dependencies": {},
"browserify": {
Expand Down
Loading

0 comments on commit 33e28d8

Please sign in to comment.