mirror of
https://github.com/fergalmoran/onearmy-community-platform.git
synced 2025-12-22 09:37:54 +00:00
chore(ci): run yarn link to prep
This commit is contained in:
@@ -281,7 +281,7 @@ jobs:
|
|||||||
name: Install dependencies
|
name: Install dependencies
|
||||||
command: yarn workspaces focus one-army-community-platform
|
command: yarn workspaces focus one-army-community-platform
|
||||||
- run:
|
- run:
|
||||||
command: yarn run test:unit
|
command: yarn && yarn run test:unit
|
||||||
build:
|
build:
|
||||||
docker: *docker
|
docker: *docker
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@@ -87,7 +87,7 @@
|
|||||||
"lorem-ipsum": "^2.0.3",
|
"lorem-ipsum": "^2.0.3",
|
||||||
"mobx": "6.3.2",
|
"mobx": "6.3.2",
|
||||||
"mobx-react": "7.2.0",
|
"mobx-react": "7.2.0",
|
||||||
"oa-components": "workspace:^",
|
"oa-components": "workspace:*",
|
||||||
"oa-shared": "1.0.0",
|
"oa-shared": "1.0.0",
|
||||||
"pino": "^7.2.0",
|
"pino": "^7.2.0",
|
||||||
"pino-logflare": "^0.3.12",
|
"pino-logflare": "^0.3.12",
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ interface IState {
|
|||||||
disabled: boolean
|
disabled: boolean
|
||||||
contactDetails?: string
|
contactDetails?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
@inject('adminStore')
|
@inject('adminStore')
|
||||||
@observer
|
@observer
|
||||||
export class AdminContact extends React.Component<IProps, IState> {
|
export class AdminContact extends React.Component<IProps, IState> {
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "es5",
|
"target": "es5",
|
||||||
"lib": ["dom", "dom.iterable", "esnext"],
|
"lib": [
|
||||||
|
"dom",
|
||||||
|
"dom.iterable",
|
||||||
|
"esnext"
|
||||||
|
],
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
@@ -28,7 +32,10 @@
|
|||||||
"noFallthroughCasesInSwitch": true,
|
"noFallthroughCasesInSwitch": true,
|
||||||
"useUnknownInCatchVariables": false
|
"useUnknownInCatchVariables": false
|
||||||
},
|
},
|
||||||
"include": ["src/**/*", "types"],
|
"include": [
|
||||||
|
"src/**/*",
|
||||||
|
"types"
|
||||||
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"node_modules",
|
"node_modules",
|
||||||
"build",
|
"build",
|
||||||
|
|||||||
Reference in New Issue
Block a user