Skip to content

Commit

Permalink
feat(espower-loader): transfer to power-assert-js organization
Browse files Browse the repository at this point in the history
  • Loading branch information
twada committed May 15, 2015
1 parent d6bfb35 commit 2e155de
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 23 deletions.
14 changes: 7 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
## [0.11.0](https://github.com/twada/espower-loader/releases/tag/v0.11.0) (2015-05-06)
## [0.11.0](https://github.com/power-assert-js/espower-loader/releases/tag/v0.11.0) (2015-05-06)


#### Features

* [Adjust line and column number in stack traces](https://github.com/twada/espower-loader/pull/3)
* [Adjust line and column number in stack traces](https://github.com/power-assert-js/espower-loader/pull/3)


## [0.10.0](https://github.com/twada/espower-loader/releases/tag/v0.10.0) (2014-11-11)
## [0.10.0](https://github.com/power-assert-js/espower-loader/releases/tag/v0.10.0) (2014-11-11)


* **espower-loader:**
* update espower-source to 0.10.0 ([0994df9a](https://github.com/twada/espower-loader/commit/0994df9a82129bee712543f80bc94b16fe83f23f))
* update espower-source to 0.10.0 ([0994df9a](https://github.com/power-assert-js/espower-loader/commit/0994df9a82129bee712543f80bc94b16fe83f23f))


### 0.9.1 (2014-09-17)


#### Features

* **espower-loader:** update espower-source to 0.9.1 ([de14b9ad](https://github.com/twada/espower-loader/commit/de14b9ad5cc6d12a8193529fe6344608d2e23eaf))
* **espower-loader:** update espower-source to 0.9.1 ([de14b9ad](https://github.com/power-assert-js/espower-loader/commit/de14b9ad5cc6d12a8193529fe6344608d2e23eaf))


## 0.9.0 (2014-09-02)


#### Features

* **espower-loader:** use espower-source 0.9.0 ([c5329f39](https://github.com/twada/espower-loader/commit/c5329f397d4ab8e434a1788d0fa1c2eb7670a25c))
* **espower-loader:** use espower-source 0.9.0 ([c5329f39](https://github.com/power-assert-js/espower-loader/commit/c5329f397d4ab8e434a1788d0fa1c2eb7670a25c))


## 0.8.0 (2014-08-12)


#### Features

* **espower-loader:** update espower-source to 0.8.0 ([54c2143b](https://github.com/twada/espower-loader/commit/54c2143bba3966aaf61f1a4d331f3543257f9222))
* **espower-loader:** update espower-source to 0.8.0 ([54c2143b](https://github.com/power-assert-js/espower-loader/commit/54c2143bba3966aaf61f1a4d331f3543257f9222))


#### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion MIT-LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2013-2015 Takuto Wada, https://github.com/twada/espower-loader
Copyright (c) 2013-2015 Takuto Wada, https://github.com/power-assert-js/espower-loader

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ DESCRIPTION
---------------------------------------
`espower-loader` is a Node.js module loader that enhances target sources on the fly. So you can instrument Power Assert feature without code generation for now.

`espower-loader` applies [espower](http://github.com/twada/espower) to target sources on loading them. `espower` manipulates assertion expression (JavaScript Code) in the form of ECMAScript AST defined in [The ESTree Spec](https://github.com/estree/estree) (formerly known as [Mozilla SpiderMonkey Parser API](https://developer.mozilla.org/en-US/docs/SpiderMonkey/Parser_API)), to instrument power-assert feature into the code. `espower-loader` also adjusts line and column number in stack traces by using [source-map-support](https://github.com/evanw/node-source-map-support) module.
`espower-loader` applies [espower](http://github.com/power-assert-js/espower) to target sources on loading them. `espower` manipulates assertion expression (JavaScript Code) in the form of ECMAScript AST defined in [The ESTree Spec](https://github.com/estree/estree) (formerly known as [Mozilla SpiderMonkey Parser API](https://developer.mozilla.org/en-US/docs/SpiderMonkey/Parser_API)), to instrument power-assert feature into the code. `espower-loader` also adjusts line and column number in stack traces by using [source-map-support](https://github.com/evanw/node-source-map-support) module.

Please note that `espower-loader` is a beta version product. Pull-requests, issue reports and patches are always welcomed. See [power-assert](http://github.com/twada/power-assert) project for more documentation.
Please note that `espower-loader` is a beta version product. Pull-requests, issue reports and patches are always welcomed. See [power-assert](http://github.com/power-assert-js/power-assert) project for more documentation.


FYI: You may be interested in [intelli-espower-loader](https://github.com/azu/intelli-espower-loader) to go one step further. With [intelli-espower-loader](https://github.com/azu/intelli-espower-loader), you don't need to create loader file (like `enable-power-assert.js`). Just define test directory in `package.json` wow!
Expand Down Expand Up @@ -68,7 +68,7 @@ require('espower-loader')({

CHANGELOG
---------------------------------------
See [CHANGELOG](https://github.com/twada/espower-loader/blob/master/CHANGELOG.md)
See [CHANGELOG](https://github.com/power-assert-js/espower-loader/blob/master/CHANGELOG.md)


AUTHOR
Expand All @@ -78,14 +78,14 @@ AUTHOR

LICENSE
---------------------------------------
Licensed under the [MIT](https://github.com/twada/espower-loader/blob/master/MIT-LICENSE.txt) license.
Licensed under the [MIT](https://github.com/power-assert-js/espower-loader/blob/master/MIT-LICENSE.txt) license.


[npm-url]: https://npmjs.org/package/espower-loader
[npm-image]: https://badge.fury.io/js/espower-loader.svg

[travis-url]: http://travis-ci.org/twada/espower-loader
[travis-image]: https://secure.travis-ci.org/twada/espower-loader.svg?branch=master
[travis-url]: http://travis-ci.org/power-assert-js/espower-loader
[travis-image]: https://secure.travis-ci.org/power-assert-js/espower-loader.svg?branch=master

[depstat-url]: https://gemnasium.com/twada/espower-loader
[depstat-image]: https://gemnasium.com/twada/espower-loader.svg
[depstat-url]: https://gemnasium.com/power-assert-js/espower-loader
[depstat-image]: https://gemnasium.com/power-assert-js/espower-loader.svg
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/**
* espower-loader - Power Assert feature instrumentor on the fly.
*
* https://github.com/twada/espower-loader
* https://github.com/power-assert-js/espower-loader
*
* Copyright (c) 2013-2015 Takuto Wada
* Licensed under the MIT license.
* https://github.com/twada/espower-loader/blob/master/MIT-LICENSE.txt
* https://github.com/power-assert-js/espower-loader/blob/master/MIT-LICENSE.txt
*/
var extensions = require.extensions;
var originalLoader = extensions['.js'];
Expand Down
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
"version": "0.11.0",
"author": {
"name": "Takuto Wada",
"email": "takuto.wada@gmail.com"
"email": "takuto.wada@gmail.com",
"url": "http://github.com/twada"
},
"bugs": {
"url": "https://github.com/twada/espower-loader/issues"
"url": "https://github.com/power-assert-js/espower-loader/issues"
},
"dependencies": {
"convert-source-map": "~1.1.0",
Expand Down Expand Up @@ -35,7 +36,7 @@
"test",
"test_loader"
],
"homepage": "https://github.com/twada/espower-loader",
"homepage": "https://github.com/power-assert-js/espower-loader",
"keywords": [
"power-assert",
"assert",
Expand All @@ -45,12 +46,12 @@
],
"license": {
"type": "MIT",
"url": "https://github.com/twada/espower-loader/blob/master/MIT-LICENSE.txt"
"url": "https://github.com/power-assert-js/espower-loader/blob/master/MIT-LICENSE.txt"
},
"main": "./index.js",
"repository": {
"type": "git",
"url": "http://github.com/twada/espower-loader.git"
"url": "http://github.com/power-assert-js/espower-loader.git"
},
"scripts": {
"lint": "jshint index.js",
Expand Down

0 comments on commit 2e155de

Please # to comment.