We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7ce7fd commit cba72afCopy full SHA for cba72af
.gitignore
@@ -14,3 +14,4 @@ npm*.log
14
temp
15
package
16
*.scss.ts
17
+package-deps.json
test-web-library-build/gulpfile.js
@@ -1,10 +1,15 @@
1
'use strict';
2
3
+let path = require('path');
4
let build = require('@microsoft/web-library-build');
5
6
build.sass.setConfig({ useCSSModules: true });
7
build.webpack.setConfig({ configPath: null });
8
build.karma.setConfig({ configPath: null });
9
10
+build.setConfig({
11
+ libAMDFolder: path.join(build.getConfig().packageFolder, 'lib-amd')
12
+});
13
+
build.initialize(require('gulp'));
0 commit comments