File tree Expand file tree Collapse file tree 5 files changed +68
-0
lines changed Expand file tree Collapse file tree 5 files changed +68
-0
lines changed Original file line number Diff line number Diff line change 1+ .idea /
2+ node_modules /
Original file line number Diff line number Diff line change 1+ sudo : false
2+ os :
3+ - linux
4+ - osx
5+
6+ language : node_js
7+ node_js :
8+ - 6
9+ - 7
10+ - 8
11+
12+ cache :
13+ yarn : true
14+ directories :
15+ - node_modules
16+
17+ deploy :
18+ provider : npm
19+ email : lamo2k123@gmail.com
20+ api_key : $NPM_API_KEY
21+ on :
22+ tags : true
23+ repo : lamo2k123/jest-transform.reflection
Original file line number Diff line number Diff line change 1+ const { readFileSync } = require ( 'fs' ) ;
2+ const { resolve } = require ( 'path' ) ;
3+
4+ module . exports = {
5+ process : function ( src , filename ) {
6+ return readFileSync ( resolve ( __dirname , 'proxy.js' ) , {
7+ encoding : 'utf8'
8+ } )
9+ }
10+ } ;
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " jest-transform.reflection" ,
3+ "version" : " 1.0.1" ,
4+ "description" : " Jest transformer reflection object" ,
5+ "keywords" : [
6+ " jest" ,
7+ " transform" ,
8+ " reflection" ,
9+ " object"
10+ ],
11+ "homepage" : " https://github.com/lamo2k123/jest-transform.reflection" ,
12+ "bugs" : {
13+ "url" : " https://github.com/lamo2k123/jest-transform.reflection/issues" ,
14+ "email" : " lamo2k123@gmail.com"
15+ },
16+ "license" : " MIT" ,
17+ "author" : {
18+ "name" : " Aleksey Novikov" ,
19+ "email" : " lamo2k123@gmail.com"
20+ },
21+ "contributors" : [],
22+ "main" : " index.js" ,
23+ "repository" : " lamo2k123/jest-transform.reflection"
24+ }
Original file line number Diff line number Diff line change 1+ module . exports = new Proxy ( { } , {
2+ get : function getter ( target , key ) {
3+ if ( key === '__esModule' ) {
4+ return false ;
5+ }
6+
7+ return key ;
8+ }
9+ } ) ;
You can’t perform that action at this time.
0 commit comments