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 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:

View File

@@ -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",

View File

@@ -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> {

View File

@@ -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",