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

feat: add support for Plug'n'Play package managers (#14)

* chore: use yarn berry with pnp

* feat: add plug'n'play support

* chore: add yarn gitattributes

* typo: fix comment
This commit is contained in:
David Wheatley
2021-11-08 23:53:18 +00:00
committed by GitHub
parent 077bddd8dd
commit 08c2e9f198
7 changed files with 3901 additions and 1637 deletions

View File

@@ -6,24 +6,26 @@
"author": "Flarum Team",
"license": "MIT",
"peerDependencies": {
"webpack": "^5.60.0"
"webpack": "^5.0.0"
},
"dependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@babel/plugin-transform-object-assign": "^7.12.13",
"@babel/plugin-transform-react-jsx": "^7.14.3",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.14.0",
"babel-loader": "^8.2.2",
"typescript": "^4.3.2",
"webpack-bundle-analyzer": "^4.4.2"
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-private-methods": "^7.16.0",
"@babel/plugin-transform-object-assign": "^7.16.0",
"@babel/plugin-transform-react-jsx": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@babel/runtime": "^7.16.0",
"babel-loader": "^8.2.3",
"typescript": "^4.4.4",
"webpack": "^5.0.0",
"webpack-bundle-analyzer": "^4.5.0"
},
"devDependencies": {
"prettier": "^2.3.0"
}
"prettier": "^2.4.1"
},
"packageManager": "yarn@3.1.0"
}