Skip to content

Commit 78d199a

Browse files
committed
rename source files
1 parent 5d164b5 commit 78d199a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/cli.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import * as chokidar from 'chokidar';
55
import glob from 'glob';
66
import * as yargs from 'yargs';
77
import 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

1111
const 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.

src/DtsCreator.ts renamed to src/dts-creator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import * as process from 'process';
22
import * as path from'path';
33
import * as os from 'os';
44
import 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";
77
import {Plugin} from "postcss";
88

99

File renamed without changes.

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
import { DtsCreator } from './DtsCreator';
1+
import { DtsCreator } from './dts-creator';
22
export = DtsCreator;

test/dtsCreator.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
var path = require('path');
44
var assert = require('assert');
5-
var DtsCreator = require('../lib/DtsCreator').DtsCreator;
5+
var DtsCreator = require('../lib/dts-creator').DtsCreator;
66
var os = require('os');
77

88
describe('DtsCreator', () => {

0 commit comments

Comments
 (0)