UNPKG

angular-material-npfixed

Version:

The Angular Material project is an implementation of Material Design in Angular.js. This project provides a set of reusable, well-tested, and accessible Material Design UI components. Angular Material is supported internally at Google by the Angular.js, M

59 lines (54 loc) 1.47 kB
var args = require('minimist')(process.argv.slice(2)); var VERSION = args.version || require('../package.json').version; module.exports = { banner: '/*!\n' + ' * Angular Material Design\n' + ' * https://github.com/angular/material\n' + ' * @license MIT\n' + ' * v' + VERSION + '\n' + ' */\n', jsBaseFiles: [ 'src/core/**/*.js' ], jsFiles: [ 'src/**/*.js', '!src/**/*.spec.js' ], mockFiles : [ 'test/angular-material-mocks.js' ], themeBaseFiles: [ 'src/core/style/variables.scss', 'src/core/style/mixins.scss' ], scssBaseFiles: [ 'src/core/style/color-palette.scss', 'src/core/style/variables.scss', 'src/core/style/mixins.scss', 'src/core/style/structure.scss', 'src/core/style/typography.scss', 'src/core/style/layout.scss', // TODO(crisbeto): can be removed once mdPanel is in the core. 'src/components/panel/*.scss' ], scssLayoutFiles: [ 'src/core/style/variables.scss', 'src/core/style/mixins.scss', 'src/core/style/layout.scss', 'src/core/services/layout/layout.scss' ], scssLayoutAttributeFiles: [ 'src/core/style/variables.scss', 'src/core/style/mixins.scss', 'src/core/services/layout/layout-attributes.scss' ], scssPaths : [ 'src/components/**/*.scss', 'src/core/services/**/*.scss' ], cssIEPaths : ['src/**/ie_fixes.css'], paths: 'src/+(components|core)/**', outputDir: 'dist/', demoFolder: 'demo-partials' };