Skip to content

Commit

Permalink
[Fix] Absence of types in the build (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
onesine committed Mar 11, 2023
1 parent e71066d commit 2cc488b
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ node_modules
assets
.git
pages
components
page-components
styles
.next
.rollup.cache
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
14 changes: 7 additions & 7 deletions pages/index.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import Head from "next/head";
import Select from "../src";
import Header from "../components/Header";
import Button from "../components/Button";
import SelectContainer from "../components/SelectContainer";
import Header from "../page-components/Header";
import Button from "../page-components/Button";
import SelectContainer from "../page-components/SelectContainer";
import { useCallback, useEffect, useState } from "react";
import TailwindColors from "../components/TailwindColors";
import Checkbox from "../components/Checkbox";
import Alert from "../components/Alert";
import { DarkLink, LightLink } from "../components/Link";
import TailwindColors from "../page-components/TailwindColors";
import Checkbox from "../page-components/Checkbox";
import Alert from "../page-components/Alert";
import { DarkLink, LightLink } from "../page-components/Link";

const MANGAS = [
{
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./page-components/**/*.{js,ts,jsx,tsx}",
"./src/**/*.{js,ts,jsx,tsx}"
],
theme: {
Expand Down

0 comments on commit 2cc488b

Please sign in to comment.