@absolutejs/absolute 0.5.3 → 0.5.4

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": "@absolutejs/absolute",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "A fullstack meta-framework for building web applications with TypeScript",
5
5
  "repository": {
6
6
  "type": "git",
package/postcss.config.ts DELETED
@@ -1,8 +0,0 @@
1
- import tailwindcss from "tailwindcss";
2
- import autoprefixer from "autoprefixer";
3
-
4
- const config = {
5
- plugins: [tailwindcss, autoprefixer]
6
- };
7
-
8
- export default config;
@@ -1,7 +0,0 @@
1
- import type { Config } from "tailwindcss";
2
-
3
- const config: Config = {
4
- content: ["./src/frontend/**/*.{js,ts,jsx,tsx,mdx}"]
5
- };
6
-
7
- export default config;