Skip to content

Commit 576120b

Browse files
author
Uku Pattak
committed
Rename files
1 parent 8495ab3 commit 576120b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "sql-formatter",
33
"version": "0.0.1",
44
"description": "Formats whitespaces in a SQL query to make it more readable",
5-
"main": "lib/SqlFormatter.js",
5+
"main": "lib/sqlFormatter.js",
66
"keywords": [
77
"sql",
88
"formatter",
@@ -27,8 +27,8 @@
2727
"check": "npm run lint && npm run test",
2828
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min",
2929
"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",
3232
"prepublish": "npm run clean && npm run check && npm run build && check-es3-syntax lib/ dist/ --kill --print"
3333
},
3434
"repository": {
File renamed without changes.

test/SqlFormatterTest.js renamed to test/sqlFormatterTest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import sqlFormatter from "../src/SqlFormatter";
1+
import sqlFormatter from "../src/sqlFormatter";
22

33
describe("sqlFormatter", function() {
44
beforeEach(function() {

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const config = {
99
}]
1010
},
1111
output: {
12-
library: "SqlFormatter",
12+
library: "sqlFormatter",
1313
libraryTarget: "umd"
1414
},
1515
plugins: [

0 commit comments

Comments
 (0)