File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ import * as chokidar from 'chokidar';
55import glob from 'glob' ;
66import * as yargs from 'yargs' ;
77import chalk from 'chalk' ;
8- import { DtsCreator } from './DtsCreator ' ;
9- import { DtsContent } from "./DtsContent " ;
8+ import { DtsCreator } from './dts-creator ' ;
9+ import { DtsContent } from "./dts-content " ;
1010
1111const yarg = yargs . usage ( 'Create .css.d.ts from CSS modules *.css files.\nUsage: $0 [options] <input directory>' )
1212 . example ( '$0 src/styles' , '' )
File renamed without changes.
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ import * as process from 'process';
22import * as path from 'path' ;
33import * as os from 'os' ;
44import camelcase from "camelcase"
5- import FileSystemLoader from './FileSystemLoader ' ;
6- import { DtsContent } from "./DtsContent " ;
5+ import FileSystemLoader from './file-system-loader ' ;
6+ import { DtsContent } from "./dts-content " ;
77import { Plugin } from "postcss" ;
88
99
File renamed without changes.
Original file line number Diff line number Diff line change 1- import { DtsCreator } from './DtsCreator ' ;
1+ import { DtsCreator } from './dts-creator ' ;
22export = DtsCreator ;
Original file line number Diff line number Diff line change 22
33var path = require ( 'path' ) ;
44var assert = require ( 'assert' ) ;
5- var DtsCreator = require ( '../lib/DtsCreator ' ) . DtsCreator ;
5+ var DtsCreator = require ( '../lib/dts-creator ' ) . DtsCreator ;
66var os = require ( 'os' ) ;
77
88describe ( 'DtsCreator' , ( ) => {
You can’t perform that action at this time.
0 commit comments