Repo maintenance: add Prettier config, update deps (#41)

* Bump deps; add prettier dep

* Add Prettier config
This commit is contained in:
David Wheatley 2021-07-18 21:21:44 +01:00 committed by GitHub
parent 53ed61c444
commit 81187fe5fe
3 changed files with 3772 additions and 3343 deletions

View File

@ -0,0 +1,6 @@
{
"printWidth": 150,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5"
}

File diff suppressed because it is too large Load Diff

View File

@ -2,12 +2,15 @@
"private": true,
"name": "@flarum/subscriptions",
"dependencies": {
"flarum-webpack-config": "0.1.0-beta.10",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
"flarum-webpack-config": "0.1.0-beta.16.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"scripts": {
"dev": "webpack --mode development --watch",
"build": "webpack --mode production"
},
"devDependencies": {
"prettier": "^2.3.0"
}
}