Comparing version 0.0.2 to 0.0.3
@@ -14,22 +14,9 @@ | ||
* [NPM (v3)](https://www.npmjs.com) | ||
* Internet Access | ||
## Getting Started | ||
```bash | ||
npm install | ||
``` | ||
## Testing | ||
See [https://travis-ci.org/dbtedman/estoolbox](https://travis-ci.org/dbtedman/estoolbox) for CI results. | ||
See [https://travis-ci.org/dbtedman/estoolbox](https://travis-ci.org/dbtedman/estoolbox) for CI results, run on each commit. | ||
To run complete test suite: | ||
### Static Analysis | ||
```bash | ||
npm run test | ||
``` | ||
#### Lint | ||
Linting support provided by [ESLint](http://eslint.org/) based on rules defined in `.eslintrc.yml`. | ||
@@ -36,0 +23,0 @@ |
/** | ||
* Karma configuration, https://karma-runner.github.io. | ||
* | ||
* Test code are converted from ES2015 to ES5 by Babel and then are executed in a PhantomJS | ||
* browser using Jasmine. | ||
*/ | ||
module.exports = function (config) { | ||
config.set({ | ||
// PhantomJS provides headless javascript based web browser for tests to be executated in. | ||
browsers: ["PhantomJS"], | ||
@@ -12,3 +17,3 @@ | ||
{ | ||
pattern: "./spec/run.js" | ||
pattern: "./spec/**/*Spec.js" | ||
} | ||
@@ -20,5 +25,6 @@ ], | ||
preprocessors: { | ||
"./spec/run.js": ["webpack"] | ||
"./spec/**/*Spec.js": ["webpack"] | ||
}, | ||
// Webpack config to enable Babel ES2015 to ES5 conversion. | ||
webpack: { | ||
@@ -37,4 +43,6 @@ module: { | ||
// Only perform a single run of the test suite and then stop. | ||
singleRun: true, | ||
// Make webpack operate silently. | ||
webpackServer: { | ||
@@ -41,0 +49,0 @@ noInfo: true |
{ | ||
"name": "estoolbox", | ||
"version": "0.0.2", | ||
"description": "A collection of libraries intended to augment the development of ES2015 targeted applications.", | ||
"version": "0.0.3", | ||
"main": "./src/main.js", | ||
@@ -16,11 +17,12 @@ "scripts": { | ||
"devDependencies": { | ||
"babel-core": "^6.17.0", | ||
"babel-loader": "^6.2.5", | ||
"babel-preset-es2015": "^6.14.0", | ||
"eslint": "^3.3.1", | ||
"eslint-plugin-jasmine": "^1.8.1", | ||
"jasmine": "^2.4.1", | ||
"jasmine-core": "^2.4.1", | ||
"karma": "^1.2.0", | ||
"babel-preset-es2015": "^6.16.0", | ||
"eslint": "^3.7.1", | ||
"eslint-config-defaults": "^9.0.0", | ||
"jasmine": "^2.5.2", | ||
"jasmine-core": "^2.5.2", | ||
"karma": "^1.3.0", | ||
"karma-jasmine": "^1.0.2", | ||
"karma-phantomjs-launcher": "^1.0.1", | ||
"karma-phantomjs-launcher": "^1.0.2", | ||
"karma-webpack": "^1.8.0", | ||
@@ -27,0 +29,0 @@ "phantom-jasmine": "^0.3.0", |
# ESToolbox `v0.0.2` [![Build Status](https://travis-ci.org/dbtedman/estoolbox.svg?branch=master)](https://travis-ci.org/dbtedman/estoolbox) [![NPM Version](https://img.shields.io/npm/v/estoolbox.svg)](https://www.npmjs.com/package/estoolbox) | ||
# [ESToolbox](https://dbtedman.github.io/estoolbox/) `v0.0.3` [![Build Status](https://travis-ci.org/dbtedman/estoolbox.svg?branch=master)](https://travis-ci.org/dbtedman/estoolbox) [![NPM Version](https://img.shields.io/npm/v/estoolbox.svg)](https://www.npmjs.com/package/estoolbox) | ||
A collection of libraries intended to augment the development of ES2015 targeted applications. | ||
## Is it open? | ||
Yes, it is released under the MIT License, See [LICENSE.md](LICENSE.md). | ||
## Where do I start? | ||
@@ -20,13 +24,10 @@ | ||
## Is it open? | ||
## Want to learn more? | ||
Yes, it is released under the MIT License, See [LICENSE.md](LICENSE.md). | ||
See our [CONTRIBUTING.md](CONTRIBUTING.md) guide for information regarding: | ||
## Is the API stable? | ||
* project contributors | ||
* dependencies | ||
* testing | ||
* releasing | ||
No, you are best to wait for the `1.0.0` version before using this collection of libraries, after that you can rely on [semver](http://semver.org) based stability. | ||
## Want to learn more? | ||
* Read the [docs](docs/). | ||
* See the [CONTRIBUTING.md](CONTRIBUTING.md) guide. |
@@ -19,3 +19,3 @@ import router from "../src/router"; | ||
try { | ||
router.when("/about", (request) => { | ||
router.when("/about", () => { | ||
}); | ||
@@ -22,0 +22,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
129483
120
33
13
33