Compare commits
3 Commits
e6d1e4fbb9
...
66036d17fa
| Author | SHA1 | Date | |
|---|---|---|---|
| 66036d17fa | |||
| 5cbb3790ac | |||
| 15d2d66cd6 |
19
.drone.yml
Normal file
19
.drone.yml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
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
|
||||||
|
|
||||||
|
...
|
||||||
@ -1,4 +1,9 @@
|
|||||||
{
|
{
|
||||||
|
"scripts": {
|
||||||
|
"clean": "lerna exec rimraf -- lib/ esm/ *.tsbuildinfo",
|
||||||
|
"lint": "eslint --ext .ts,.tsx,.ts .",
|
||||||
|
"bootstrap": "ttsc --build packages/scripts && lerna exec rondo -- build"
|
||||||
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@rondo.dev/argparse": "file:packages/argparse",
|
"@rondo.dev/argparse": "file:packages/argparse",
|
||||||
"@rondo.dev/client": "file:packages/client",
|
"@rondo.dev/client": "file:packages/client",
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
import { Button, Heading, Help, Input } from '../components'
|
import { Button, Heading, Input } from '../components'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { FaCheck, FaEdit, FaPlusSquare } from 'react-icons/fa'
|
import { FaCheck, FaEdit, FaPlusSquare } from 'react-icons/fa'
|
||||||
import { TeamActions, Team } from '@rondo.dev/common'
|
import { TeamActions, Team } from '@rondo.dev/common'
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
import { ReadonlyRecord, Team, TeamActions } from '@rondo.dev/common'
|
import { ReadonlyRecord, Team, TeamActions } from '@rondo.dev/common'
|
||||||
import { Button, Flex, Panel, PanelBlock, PanelHeading } from '../components'
|
import { Button, Panel, PanelBlock, PanelHeading } from '../components'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { FaEdit, FaPlus, FaTimes } from 'react-icons/fa'
|
import { FaEdit, FaPlus, FaTimes } from 'react-icons/fa'
|
||||||
import { Link } from 'react-router-dom'
|
import { Link } from 'react-router-dom'
|
||||||
|
|||||||
@ -117,7 +117,7 @@ describe('TestUtils', () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
describe('findOneByValue', () => {
|
describe('findOneByValue', () => {
|
||||||
|
// TODO
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user