Git Product home page Git Product logo

hrkmtsmt.me's Introduction

hrkmtsmt.me

hrkmtsmt.me's People

Contributors

hrkmtsmt avatar renovate[bot] avatar

Watchers

 avatar

hrkmtsmt.me's Issues

Dependency Dashboard

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Rate-Limited

These updates are currently rate-limited. Click on a checkbox below to force their creation now.

  • Update dependency concurrently to v7.6.0
  • Update dependency eslint to v8.57.0
  • Update dependency eslint-plugin-css-modules to v2.12.0
  • Update dependency eslint-plugin-react to v7.34.2
  • Update dependency eslint-plugin-tailwindcss to v3.17.0
  • Update dependency fast-xml-parser to v4.4.0
  • Update dependency jest-preview to ^0.3.0
  • Update dependency next-seo to v5.15.0
  • Update dependency postcss-import to v15.1.0
  • Update dependency prettier to v2.8.8
  • Update dependency sass to v1.77.4
  • Update dependency tailwindcss to v3.4.3
  • Update dependency three to ^0.165.0 (three, @types/three)
  • Update dependency typescript to v4.9.5
  • Update react monorepo (@types/react, @types/react-dom, react, react-dom, react-test-renderer)
  • Update testing-library monorepo (@testing-library/jest-dom, @testing-library/react)
  • Update typescript-eslint monorepo to v5.62.0 (@typescript-eslint/eslint-plugin, @typescript-eslint/parser)
  • Update dependency @reduxjs/toolkit to v2
  • Update dependency @types/node to v20
  • Update dependency concurrently to v8
  • Update dependency eslint to v9
  • Update dependency immer to v10
  • Update dependency next-seo to v6
  • Update dependency postcss-import to v16
  • Update dependency prettier to v3
  • Update dependency react-redux to v9
  • Update dependency swr to v2
  • Update dependency typescript to v5
  • Update jest monorepo to v29 (major) (@jest/types, jest, jest-environment-jsdom, ts-jest)
  • Update nextjs monorepo to v14 (major) (@next/eslint-plugin-next, next)
  • Update testing-library monorepo (major) (@testing-library/jest-dom, @testing-library/react)
  • Update typescript-eslint monorepo to v7 (major) (@typescript-eslint/eslint-plugin, @typescript-eslint/parser)
  • 🔐 Create all rate-limited PRs at once 🔐

Open

These updates have all been created already. Click a checkbox below to force a retry/rebase of any.

Ignored or Blocked

These are blocked by an existing closed PR and will not be recreated unless you click a checkbox below.

Detected dependencies

npm
package.json
  • @reduxjs/toolkit ^1.8.3
  • axios ^1.1.2
  • dayjs ^1.11.4
  • fast-xml-parser ^4.0.11
  • immer ^9.0.15
  • next ^13.0.1
  • next-seo ^5.5.0
  • react ^18.2.0
  • react-dom ^18.2.0
  • react-feather ^2.0.10
  • react-redux ^8.0.2
  • swr ^1.3.0
  • three ^0.146.0
  • uuidv4 ^6.2.13
  • @jest/types ^28.1.3
  • @next/eslint-plugin-next ^12.3.1
  • @testing-library/jest-dom ^5.16.5
  • @testing-library/react ^13.3.0
  • @testing-library/react-hooks ^8.0.1
  • @types/node ^17.0.23
  • @types/react ^18.0.0
  • @types/react-dom ^18.0.0
  • @types/react-test-renderer ^18.0.0
  • @types/three ^0.144.0
  • @typescript-eslint/eslint-plugin ^5.18.0
  • @typescript-eslint/parser ^5.18.0
  • autoprefixer ^10.4.4
  • concurrently ^7.5.0
  • eslint ^8.13.0
  • eslint-plugin-css-modules ^2.11.0
  • eslint-plugin-react ^7.29.4
  • eslint-plugin-tailwindcss ^3.6.1
  • jest ^28.1.3
  • jest-environment-jsdom ^28.1.3
  • jest-preview ^0.2.8
  • postcss ^8.4.12
  • postcss-import ^15.0.0
  • prettier ^2.7.1
  • react-test-renderer ^18.2.0
  • sass ^1.55.0
  • tailwindcss ^3.1.8
  • ts-jest ^28.0.7
  • typescript ^4.6.3

  • Check this box to trigger a request for Renovate to run again on this repository

styled-componentsの型エラーを修正

props.secondで型エラー

const Item = styled.li`
  transform: translateX(-100%);
  transition: ease-in-out 0.2s;
  font-size: 36px;
  line-height: 80px;
  &[aria-expanded='true'] {
    transform: translateX(0);
    transition: ease-in-out 0.4s;
    // ここのprops.secondで型エラー
    transition-delay: ${(props) => (props.second / 10) * 2 + 0.4}s;
  }
`;

エラーメッセージ

プロパティ 'second' は型 'ThemedStyledProps<Pick<DetailedHTMLProps<LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "key" | keyof LiHTMLAttributes<HTMLLIElement>> & { ...; }, any>' に存在しません。ts(2339)
any

Can't compiled

Failed to compile.

20:27:12.187 |  
20:27:12.188 | ./src/styles/colors.ts:1:1
20:27:12.188 | Type error: 'colors.ts' cannot be compiled under '--isolatedModules' because it is considered a global script file. Add an import, export, or an empty 'export {}' statement to make it a module.
20:27:12.188 |  
20:27:12.188 | > 1 | module.exports = {
20:27:12.188 | | ^
20:27:12.188 | 2 | base: '#FFFFFF',
20:27:12.188 | 3 | primary: '#2F76E6',
20:27:12.188 | 4 | secondary: '#D1E2FF',
20:27:12.211 | error Command failed with exit code 1.
20:27:12.211 | info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
20:27:12.232 | Error! Command "yarn run vercel-build" exited with 1
20:27:12.240 | Error: Command "vercel build" exited with 1


Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.