You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
592 B
11 lines
592 B
10 years ago
|
var fs = require('fs');
|
||
|
var cwd = process.cwd();
|
||
|
var path = require('path');
|
||
|
var originalIndex = fs.readFileSync(path.join(cwd, 'index.js'), 'utf-8');
|
||
|
var newIndex = originalIndex
|
||
|
.replace(/\/components\//g, '/')
|
||
|
.replace("require('./package.json').version", "'" + require('../package.json').version + "'")
|
||
|
.replace("require('./style/index.less')", "require('./index.css')");
|
||
|
fs.writeFileSync(path.join(cwd, 'lib/index.js'), newIndex, 'utf-8');
|
||
|
fs.createReadStream(path.join(cwd, 'dist/antd.css')).pipe(fs.createWriteStream(path.join(cwd, 'lib/index.css')));
|
||
|
console.log('prenpm done');
|