design-systems-cli: yarn start: 'tsc' is not recognized as an internal or external command

Describe the bug

Project does not start due to tsc not being present.

To Reproduce

  1. Fork repo
  2. Run yarn
  3. Run yarn start

Expected behavior

Success output.

Screenshots

image

Desktop (please complete the following information):

  • OS: Windows 10 Home
  • Browser N/A
  • Version No version present in intuit/design-systems-cli

About this issue

  • Original URL
  • State: open
  • Created 4 years ago
  • Comments: 21 (11 by maintainers)

Most upvoted comments

You could just add the engines section to the package.json that will show an error to the users if they are using a different version and will suggest which one should be used

"engines": {
    "node": ">=10.18.1"
}

Along with that a badge with the expected node version can be added to the README.

node-current badge

@jasonrundell I can see the following line in your terminal output: image that mean that you’re getting an error installing the modules, you should upgrade your node version to at least 10.18.1, and that could be the minimum required version, this could be added to the readme.

I feel that if you upgrade you will not have any problem again.

Maybe a windows thing? Potentially a npm/node versioning issue? I just tried a clean clone of the repo and did yarn and yarn start without issue – but i’m on a macbook. If you’re able to diagnose the problem, i’d be curious to know what the underlying issue is.

Go for it