chore(ci): run yarn link to prep

This commit is contained in:
Luke Watts
2022-02-20 14:38:41 +01:00
parent 0c453a8452
commit c38786a1a1
4 changed files with 12 additions and 4 deletions

View File

@@ -281,7 +281,7 @@ jobs:
name: Install dependencies
command: yarn workspaces focus one-army-community-platform
- run:
command: yarn run test:unit
command: yarn && yarn run test:unit
build:
docker: *docker
environment:

View File

@@ -87,7 +87,7 @@
"lorem-ipsum": "^2.0.3",
"mobx": "6.3.2",
"mobx-react": "7.2.0",
"oa-components": "workspace:^",
"oa-components": "workspace:*",
"oa-shared": "1.0.0",
"pino": "^7.2.0",
"pino-logflare": "^0.3.12",

View File

@@ -17,6 +17,7 @@ interface IState {
disabled: boolean
contactDetails?: string
}
@inject('adminStore')
@observer
export class AdminContact extends React.Component<IProps, IState> {

View File

@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"baseUrl": ".",
"skipLibCheck": true,
@@ -28,7 +32,10 @@
"noFallthroughCasesInSwitch": true,
"useUnknownInCatchVariables": false
},
"include": ["src/**/*", "types"],
"include": [
"src/**/*",
"types"
],
"exclude": [
"node_modules",
"build",