File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
"name" : " sql-formatter" ,
3
3
"version" : " 0.0.1" ,
4
4
"description" : " Formats whitespaces in a SQL query to make it more readable" ,
5
- "main" : " lib/SqlFormatter .js" ,
5
+ "main" : " lib/sqlFormatter .js" ,
6
6
"keywords" : [
7
7
" sql" ,
8
8
" formatter" ,
27
27
"check" : " npm run lint && npm run test" ,
28
28
"build" : " npm run build:commonjs && npm run build:umd && npm run build:umd:min" ,
29
29
"build:commonjs" : " babel src --out-dir lib" ,
30
- "build:umd" : " cross-env NODE_ENV=development webpack src/SqlFormatter .js dist/sql-formatter.js" ,
31
- "build:umd:min" : " cross-env NODE_ENV=production webpack src/SqlFormatter .js dist/sql-formatter.min.js" ,
30
+ "build:umd" : " cross-env NODE_ENV=development webpack src/sqlFormatter .js dist/sql-formatter.js" ,
31
+ "build:umd:min" : " cross-env NODE_ENV=production webpack src/sqlFormatter .js dist/sql-formatter.min.js" ,
32
32
"prepublish" : " npm run clean && npm run check && npm run build && check-es3-syntax lib/ dist/ --kill --print"
33
33
},
34
34
"repository" : {
File renamed without changes.
Original file line number Diff line number Diff line change 1
- import sqlFormatter from "../src/SqlFormatter " ;
1
+ import sqlFormatter from "../src/sqlFormatter " ;
2
2
3
3
describe ( "sqlFormatter" , function ( ) {
4
4
beforeEach ( function ( ) {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ const config = {
9
9
} ]
10
10
} ,
11
11
output : {
12
- library : "SqlFormatter " ,
12
+ library : "sqlFormatter " ,
13
13
libraryTarget : "umd"
14
14
} ,
15
15
plugins : [
You can’t perform that action at this time.
0 commit comments