Skip to content

Commit

Permalink
feat(ci): add example sandbox with all nivo packages pre-installed
Browse files Browse the repository at this point in the history
  • Loading branch information
plouc committed Oct 29, 2020
1 parent 3932a09 commit 9007093
Show file tree
Hide file tree
Showing 6 changed files with 130 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .codesandbox/ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
"packages/voronoi",
"packages/waffle"
],
"sandboxes": ["new"]
"sandboxes": ["/examples/codesandbox"]
}
60 changes: 60 additions & 0 deletions examples/codesandbox/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"name": "react",
"version": "1.0.0",
"description": "React example starter project",
"keywords": [
"react",
"starter"
],
"main": "src/index.js",
"dependencies": {
"@nivo/annotations": "0.63.1",
"@nivo/axes": "0.63.0",
"@nivo/bar": "0.63.1",
"@nivo/bullet": "0.63.1",
"@nivo/bump": "0.63.1",
"@nivo/calendar": "0.63.1",
"@nivo/chord": "0.63.1",
"@nivo/circle-packing": "0.63.1",
"@nivo/colors": "0.63.0",
"@nivo/core": "0.63.1",
"@nivo/funnel": "0.63.1",
"@nivo/generators": "0.63.0",
"@nivo/geo": "0.63.1",
"@nivo/heatmap": "0.63.0",
"@nivo/legends": "0.63.1",
"@nivo/line": "0.63.1",
"@nivo/network": "0.63.1",
"@nivo/parallel-coordinates": "0.63.1",
"@nivo/pie": "0.63.1",
"@nivo/radar": "0.63.1",
"@nivo/sankey": "0.63.1",
"@nivo/scales": "0.63.0",
"@nivo/scatterplot": "0.63.1",
"@nivo/stream": "0.63.1",
"@nivo/sunburst": "0.63.1",
"@nivo/swarmplot": "0.63.1",
"@nivo/tooltip": "0.63.0",
"@nivo/treemap": "0.63.0",
"@nivo/voronoi": "0.63.1",
"@nivo/waffle": "0.63.1",
"react": "17.0.0",
"react-dom": "17.0.0",
"react-scripts": "3.4.3"
},
"devDependencies": {
"typescript": "3.8.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}
43 changes: 43 additions & 0 deletions examples/codesandbox/public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<!--
manifest.json provides metadata used when your web app is added to the
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
</head>

<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>

</html>
10 changes: 10 additions & 0 deletions examples/codesandbox/src/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from "react";
import "./styles.css";

export default function App() {
return (
<div className="App">
<h1>nivo</h1>
</div>
);
}
12 changes: 12 additions & 0 deletions examples/codesandbox/src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React from "react";
import ReactDOM from "react-dom";

import App from "./App";

const rootElement = document.getElementById("root");
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
rootElement
);
4 changes: 4 additions & 0 deletions examples/codesandbox/src/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.App {
font-family: sans-serif;
text-align: center;
}

0 comments on commit 9007093

Please sign in to comment.