Skip to content

Commit c0d23d5

Browse files
authored
feat(graphql): move graphql (auth, resources, common) from snake case to camel case (#138)
1 parent 943ed81 commit c0d23d5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+1945
-2346
lines changed

.prettierrc

100755100644
+7-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
2-
"singleQuote": true,
3-
"semi": false,
4-
"useTabs": false,
5-
"trailingComma": "none",
6-
"arrowParens": "avoid",
7-
"printWidth": 80
2+
"singleQuote": true,
3+
"semi": false,
4+
"useTabs": false,
5+
"tabWidth": 2,
6+
"trailingComma": "none",
7+
"arrowParens": "avoid",
8+
"printWidth": 80
89
}

package.json

+44-44
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
11
{
2-
"name": "@tensei/main",
3-
"version": "0.0.0",
4-
"main": "./build/server/index.js",
5-
"license": "MIT",
6-
"types": "./build/typings/index.d.ts",
7-
"scripts": {
8-
"test": "yarn lerna run test",
9-
"build": "yarn lerna run build",
10-
"dev": "yarn lerna run dev",
11-
"prettier": "yarn lerna run prettier",
12-
"before:release": "node scripts/prepublish.js",
13-
"release": "./scripts/release.sh",
14-
"commit": "yarn git-cz",
15-
"setup": "yarn && yarn build && cd examples/blog && yarn && cd ../typescript && yarn"
16-
},
17-
"config": {
18-
"commitizen": {
19-
"path": "cz-conventional-changelog"
20-
}
21-
},
22-
"husky": {
23-
"hooks": {
24-
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
25-
}
26-
},
27-
"private": true,
28-
"workspaces": {
29-
"packages": [
30-
"packages/*",
31-
"examples/*"
32-
],
33-
"nohoist": [
34-
"**/react-trix-editor",
35-
"**/laravel-mix",
36-
"**/node-sass"
37-
]
38-
},
39-
"dependencies": {
40-
"@commitlint/cli": "^11.0.0",
41-
"@commitlint/config-conventional": "^11.0.0",
42-
"commitizen": "^4.2.2",
43-
"husky": "^4.3.0",
44-
"lerna": "^3.22.1",
45-
"prettier": "^2.0.5"
2+
"name": "@tensei/main",
3+
"version": "0.0.0",
4+
"main": "./build/server/index.js",
5+
"license": "MIT",
6+
"types": "./build/typings/index.d.ts",
7+
"scripts": {
8+
"test": "yarn lerna run test",
9+
"build": "yarn lerna run build",
10+
"dev": "yarn lerna run dev",
11+
"prettier": "yarn prettier",
12+
"before:release": "node scripts/prepublish.js",
13+
"release": "./scripts/release.sh",
14+
"commit": "yarn git-cz",
15+
"setup": "yarn && yarn build && cd examples/blog && yarn && cd ../typescript && yarn"
16+
},
17+
"config": {
18+
"commitizen": {
19+
"path": "cz-conventional-changelog"
4620
}
21+
},
22+
"husky": {
23+
"hooks": {
24+
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
25+
}
26+
},
27+
"private": true,
28+
"workspaces": {
29+
"packages": [
30+
"packages/*",
31+
"examples/*"
32+
],
33+
"nohoist": [
34+
"**/react-trix-editor",
35+
"**/laravel-mix",
36+
"**/node-sass"
37+
]
38+
},
39+
"dependencies": {
40+
"@commitlint/cli": "^11.0.0",
41+
"@commitlint/config-conventional": "^11.0.0",
42+
"commitizen": "^4.2.2",
43+
"husky": "^4.3.0",
44+
"lerna": "^3.22.1",
45+
"prettier": "^2.0.5"
46+
}
4747
}

0 commit comments

Comments
 (0)