Skip to content

Commit

Permalink
Merge pull request #3 from zingolabs/dev
Browse files Browse the repository at this point in the history
New diagram: Zaino Roadmap
  • Loading branch information
nachog00 authored Sep 16, 2024
2 parents b378736 + 7a44ecb commit 4afd137
Show file tree
Hide file tree
Showing 36 changed files with 4,962 additions and 2,327 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/astro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
# Trigger the workflow every time you push to the `main` branch
# Using a different branch name? Replace `main` with your branch’s name
push:
branches: [ master ]
branches: [master]
# Allows you to run this workflow manually from the Actions tab on GitHub.
workflow_dispatch:

Expand Down
12 changes: 12 additions & 0 deletions .prettierrc.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/** @type {import("prettier").Config} */
export default {
plugins: ["prettier-plugin-astro"],
overrides: [
{
files: "*.astro",
options: {
parser: "astro",
},
},
],
};
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Zingo Diagrams

Zingo Diagrams is a web application that allows users to visualize and interact with Zingo projects diagrams using a visual programming approach.
Zingo Diagrams is a web application that allows users to visualize and interact with Zingo projects diagrams using a visual programming approach.
16 changes: 8 additions & 8 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// @ts-check
import { defineConfig } from 'astro/config';
import { defineConfig } from "astro/config";

import react from '@astrojs/react';
import tailwind from '@astrojs/tailwind';
import react from "@astrojs/react";
import tailwind from "@astrojs/tailwind";

// https://astro.build/config
export default defineConfig({
integrations: [
react(),
tailwind({
applyBaseStyles: false
})
applyBaseStyles: false,
}),
],
site: 'https://zingolabs.github.io',
base: 'zingo-diagrams',
});
site: "https://zingolabs.github.io",
base: "zingo-diagrams",
});
2 changes: 1 addition & 1 deletion components.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
"lib": "@/lib",
"hooks": "@/hooks"
}
}
}
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@xyflow/react": "^12.2.1",
Expand All @@ -31,5 +32,9 @@
"tailwindcss": "^3.4.10",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.5.4"
},
"devDependencies": {
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1"
}
}
}
Loading

0 comments on commit 4afd137

Please sign in to comment.