1
0
mirror of https://github.com/flarum/core.git synced 2025-09-08 23:20:54 +02:00

chore: convert flag items to ItemList (#39)

* Convert to ItemList, update import namespaces

* Bump deps, add prettier

* Format js
This commit is contained in:
Ian Morland
2022-01-07 14:05:40 +00:00
committed by GitHub
parent 0a30aa1663
commit 1bd32bb4e0
12 changed files with 345 additions and 143 deletions

View File

@@ -1,13 +1,21 @@
{
"private": true,
"name": "@flarum/flags",
"prettier": "@flarum/prettier-config",
"dependencies": {
"@flarum/prettier-config": "^1.0.0",
"flarum-webpack-config": "^1.0.0",
"flarum-tsconfig": "^1.0.2",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.0"
"webpack-cli": "^4.9.1"
},
"devDependencies": {
"prettier": "^2.5.1"
},
"scripts": {
"dev": "webpack --mode development --watch",
"build": "webpack --mode production"
"build": "webpack --mode production",
"format": "prettier --write src",
"format-check": "prettier --check src"
}
}