Skip to content

Commit e789ea6

Browse files
committed
Fixing the build-lib script, fixing the version and the readme file
1 parent b0227fb commit e789ea6

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
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)

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "redux-autoform-component-factory",
3-
"version": "0.9",
3+
"version": "0.9.0",
44
"description": "Component factory for Redux-Autoform",
55
"main": "./lib/index.js",
66
"scripts": {
@@ -42,10 +42,8 @@
4242
"child-process-promise": "^2.0.3",
4343
"colors": "^1.1.2",
4444
"coveralls": "^2.11.11",
45-
"fs-extra-promise": "^0.4.0",
4645
"isparta": "^4.0.0",
4746
"mocha": "^3.0.0",
48-
"path": "^0.12.7",
4947
"rimraf-promise": "^2.0.0"
5048
}
5149
}

tools/build-lib.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
import path from 'path';
2-
import fsep from 'fs-extra-promise';
32
import rimraf from 'rimraf-promise';
43
import colors from 'colors';
54
import { exec } from 'child-process-promise';
65

76
const repoRoot = path.resolve(__dirname, '../');
87
const lib = path.join(repoRoot, 'lib');
9-
const lessSrc = path.join(repoRoot, '/src/less');
10-
const lessDest = path.join(lib, '/less');
118

129
console.log('building lib'.green);
1310

@@ -18,5 +15,4 @@ rimraf(lib)
1815
console.log(colors.red(error))
1916
});
2017
})
21-
.then(() => fsep.copyAsync(lessSrc, lessDest))
2218
.then(() => console.log('lib built'.green));

0 commit comments

Comments
 (0)