Skip to content

Commit

Permalink
build: fix migration style file path (#3502)
Browse files Browse the repository at this point in the history
  • Loading branch information
wenqi73 authored and simplejason committed Jun 5, 2019
1 parent 15563f7 commit af03d2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build/migration-styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ fs.mkdirsSync(targetPath);
fs.copySync(path.resolve(sourcePath, `style`), path.resolve(targetPath, `style`));
fs.copySync(path.resolve(sourcePath, `ng-zorro-antd.css`), path.resolve(targetPath, `ng-zorro-antd.css`));
fs.copySync(path.resolve(sourcePath, `ng-zorro-antd.min.css`), path.resolve(targetPath, `ng-zorro-antd.min.css`));
fs.outputFileSync(path.resolve(targetPath, `ng-zorro-antd.less`), `@import "../style/index.less";
fs.outputFileSync(path.resolve(targetPath, `ng-zorro-antd.less`), `@import "../style/entry.less";
@import "../components.less";`);

0 comments on commit af03d2c

Please sign in to comment.