Compare commits

..

No commits in common. "66036d17fa63bdcd78c59adc1b307ee25f2791d4" and "e6d1e4fbb9a54e92a93a60561529f67be2ee0c6d" have entirely different histories.

5 changed files with 3 additions and 27 deletions

View File

@ -1,19 +0,0 @@
---
kind: pipeline
type: docker
name: default
steps:
- name: build
image: node:12
commands:
- npm install
- npm run lint
- npm run bootstrap
- ./node_modules/.bin/jest
- ./node_modules/.bin/lerna exec rondo -- build --esm
---
kind: signature
hmac: a49a1e7c428472d0237bb2ba73511965607384f45114941b869c6a9eff7aef70
...

View File

@ -1,9 +1,4 @@
{
"scripts": {
"clean": "lerna exec rimraf -- lib/ esm/ *.tsbuildinfo",
"lint": "eslint --ext .ts,.tsx,.ts .",
"bootstrap": "ttsc --build packages/scripts && lerna exec rondo -- build"
},
"dependencies": {
"@rondo.dev/argparse": "file:packages/argparse",
"@rondo.dev/client": "file:packages/client",

View File

@ -1,4 +1,4 @@
import { Button, Heading, Input } from '../components'
import { Button, Heading, Help, Input } from '../components'
import React from 'react'
import { FaCheck, FaEdit, FaPlusSquare } from 'react-icons/fa'
import { TeamActions, Team } from '@rondo.dev/common'

View File

@ -1,5 +1,5 @@
import { ReadonlyRecord, Team, TeamActions } from '@rondo.dev/common'
import { Button, Panel, PanelBlock, PanelHeading } from '../components'
import { Button, Flex, Panel, PanelBlock, PanelHeading } from '../components'
import React from 'react'
import { FaEdit, FaPlus, FaTimes } from 'react-icons/fa'
import { Link } from 'react-router-dom'

View File

@ -117,7 +117,7 @@ describe('TestUtils', () => {
})
describe('findOneByValue', () => {
// TODO
})
})