File tree 3 files changed +2
-12
lines changed 3 files changed +2
-12
lines changed Original file line number Diff line number Diff line change 1
- # redux-autoform-utils [ ![ Build Status] ( https://travis-ci.org/redux-autoform/redux-autoform-utils.svg?branch=master )] ( https://travis-ci.org/redux-autoform/redux-autoform-utils ) [ ![ npm version] ( https://badge.fury.io/js/redux-autoform-utils.svg )] ( https://badge.fury.io/js/redux-autoform-utils ) [ ![ codecov] ( https://codecov.io/gh/redux-autoform/redux-autoform-utils/branch/master/graph/badge.svg )] ( https://codecov.io/gh/redux-autoform/redux-autoform-utils ) [ ![ Coverage Status] ( https://coveralls.io/repos/github/redux-autoform/redux-autoform-utils/badge.svg?branch=master )] ( https://coveralls.io/github/redux-autoform/redux-autoform-utils?branch=master )
2
-
3
- [ ![ NPM] ( https://nodei.co/npm/redux-autoform-utils.png?downloads=true&downloadRank=true&stars=true )] ( https://nodei.co/npm/redux-autoform-utils/ ) [ ![ NPM] ( https://nodei.co/npm-dl/redux-autoform-utils.png?months=9&height=3 )] ( https://nodei.co/npm/redux-autoform-utils/ )
4
-
5
- Common javascript files to all the redux-autoform related projects
1
+ Component Factory for [ Redux-Autoform] ( https://github.com/redux-autoform/redux-autoform )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " redux-autoform-component-factory" ,
3
- "version" : " 0.9" ,
3
+ "version" : " 0.9.0 " ,
4
4
"description" : " Component factory for Redux-Autoform" ,
5
5
"main" : " ./lib/index.js" ,
6
6
"scripts" : {
42
42
"child-process-promise" : " ^2.0.3" ,
43
43
"colors" : " ^1.1.2" ,
44
44
"coveralls" : " ^2.11.11" ,
45
- "fs-extra-promise" : " ^0.4.0" ,
46
45
"isparta" : " ^4.0.0" ,
47
46
"mocha" : " ^3.0.0" ,
48
- "path" : " ^0.12.7" ,
49
47
"rimraf-promise" : " ^2.0.0"
50
48
}
51
49
}
Original file line number Diff line number Diff line change 1
1
import path from 'path' ;
2
- import fsep from 'fs-extra-promise' ;
3
2
import rimraf from 'rimraf-promise' ;
4
3
import colors from 'colors' ;
5
4
import { exec } from 'child-process-promise' ;
6
5
7
6
const repoRoot = path . resolve ( __dirname , '../' ) ;
8
7
const lib = path . join ( repoRoot , 'lib' ) ;
9
- const lessSrc = path . join ( repoRoot , '/src/less' ) ;
10
- const lessDest = path . join ( lib , '/less' ) ;
11
8
12
9
console . log ( 'building lib' . green ) ;
13
10
@@ -18,5 +15,4 @@ rimraf(lib)
18
15
console . log ( colors . red ( error ) )
19
16
} ) ;
20
17
} )
21
- . then ( ( ) => fsep . copyAsync ( lessSrc , lessDest ) )
22
18
. then ( ( ) => console . log ( 'lib built' . green ) ) ;
You can’t perform that action at this time.
0 commit comments