Skip to content

Commit cc3b0c1

Browse files
author
daniel.gomez
committed
Fix build folder for less files
1 parent 94af562 commit cc3b0c1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/node_modules
2+
/lib
23
/.idea

tools/build-lib.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import { exec } from 'child-process-promise';
66

77
const repoRoot = path.resolve(__dirname, '../');
88
const lib = path.join(repoRoot, 'lib');
9-
const lessSrc = path.join(repoRoot, '/src/less');
10-
const lessDest = path.join(lib, '/less');
9+
const lessSrc = path.join(repoRoot, '/src/styles');
10+
const lessDest = path.join(lib, '/styles');
1111

1212
console.log('building lib'.green);
1313

0 commit comments

Comments
 (0)