Skip to content

Commit

Permalink
feat: adds sharable url
Browse files Browse the repository at this point in the history
  • Loading branch information
Saul committed Sep 10, 2021
1 parent 996e1e7 commit f75c1d8
Show file tree
Hide file tree
Showing 25 changed files with 3,493 additions and 492 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
paths:
- '**.jsx?'
- '**.tsx?'
- '**/babel.config.js'
- '**/craco.config.js'
- '**/package.json'
- '**/github/workflows/**/test.yml'
- 'Makefile'
name: Test
jobs:
jest:
runs-on: ubuntu-latest
container:
image: node:15.14-alpine
steps:
- uses: actions/checkout@master
- run: npm ci
- run: npm run test
272 changes: 192 additions & 80 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flanksource/flanksource-ui",
"version": "0.1.17",
"version": "0.2.0",
"private": false,
"files": [
"dist",
Expand All @@ -16,27 +16,29 @@
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"history": "^5.0.1",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-country-flag": "^2.3.1",
"react-dom": "^17.0.2",
"react-hook-form": "^7.15.0",
"react-icons": "^4.2.0",
"react-markdown": "^6.0.3",
"lodash": "^4.17.21",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-syntax-highlighter": "^15.4.4",
"remark-gfm": "^2.0.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.7",
"timeago-react": "^3.0.3",
"timeago.js": "^4.0.2",
"web-vitals": "^1.0.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.7"
"web-vitals": "^1.0.1"
},
"proxy": "https://canaries.canary.lab.flanksource.com",
"scripts": {
"dev": "cross-env DISABLE_ESLINT_PLUGIN=true NODE_ENV=development craco start",
"build": "cross-env DISABLE_ESLINT_PLUGIN=true NODE_ENV=production craco build",
"compile": "cross-env NODE_ENV=production babel src --out-dir dist --copy-files --ignore __tests__,spec.js,test.js,stories.js,__snapshots__",
"test": "craco test",
"test": "craco test --transformIgnorePatterns \"node_modules/(?!(history))/\"",
"eject": "react-scripts eject",
"lint:eslint": "eslint --ext .js,.jsx,.ts,.tsx .",
"fix:eslint": "eslint --fix --ext .js,.jsx,.ts,.tsx ."
Expand Down
Loading

0 comments on commit f75c1d8

Please sign in to comment.