Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:invana/graph-canvas into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
rrmerugu committed Mar 25, 2024
2 parents d0935ac + b4e23db commit 778bd66
Show file tree
Hide file tree
Showing 143 changed files with 19,349 additions and 42,069 deletions.
19 changes: 18 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,21 @@ storybook-static/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
docs-build/*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
7 changes: 2 additions & 5 deletions .storybook/main.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,18 @@
import type { StorybookConfig } from "@storybook/react-webpack5";
import type { StorybookConfig } from "@storybook/html-vite";

const config: StorybookConfig = {
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
addons: [
"@storybook/addon-links",
"@storybook/addon-essentials",
"@storybook/preset-create-react-app",
"@storybook/addon-onboarding",
"@storybook/addon-interactions",
],
framework: {
name: "@storybook/react-webpack5",
name: "@storybook/html-vite",
options: {},
},
docs: {
autodocs: "tag",
},
staticDirs: ["../public"],
};
export default config;
2 changes: 1 addition & 1 deletion .storybook/preview.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Preview } from "@storybook/react";
import type { Preview } from "@storybook/html";

const preview: Preview = {
parameters: {
Expand Down
201 changes: 0 additions & 201 deletions LICENSE.md

This file was deleted.

16 changes: 0 additions & 16 deletions README.md

This file was deleted.

13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + TS</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading

0 comments on commit 778bd66

Please sign in to comment.