@indico-data/design-system 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indico-data/design-system",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "",
5
5
  "private": false,
6
6
  "author": "",
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './components';
package/tsconfig.json CHANGED
@@ -1,5 +1,7 @@
1
1
  {
2
2
  "compilerOptions": {
3
+ "outDir": "dist",
4
+ "rootDir": "src",
3
5
  "target": "es6",
4
6
  "jsx": "react",
5
7
  "allowSyntheticDefaultImports": true,
package/src/index.tsx DELETED
@@ -1,18 +0,0 @@
1
- import React, { StrictMode } from 'react';
2
- import * as ReactDOMClient from 'react-dom/client';
3
-
4
- const root = ReactDOMClient.createRoot(document.body);
5
-
6
- function App() {
7
- return (
8
- <div>
9
- <h1>Hello</h1>
10
- </div>
11
- );
12
- }
13
-
14
- root.render(
15
- <StrictMode>
16
- <App />
17
- </StrictMode>,
18
- );