You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following the npm instructions on the 'Download' page (i.e. 'npm install semantic-ui') seems to download everything to the project folder specified, but when I then try to follow the getting started instructions:
'#install semantic dependencies'
npm install
it fails because there is no package.json. Am I missing something? Is this not how the node package is supposed to be used? If so, more detail should be added to the docs to make it clear what the setup procedure is.
(Note: I worked around this by just downloading the git repository, which did include the necessary files, but still feel this isn't an ideal setup experience and the documentation could be clearer)
The text was updated successfully, but these errors were encountered:
The getting started guide needs an update. I would accept any PR if someone had the time to help update.
The whole procedure if installing from npm is just
npm install semantic-ui --save # # answer install questionscd /ui #or your install folder
gulp build
# or
gulp watch
semantic.json should be in your project root, and semantic will be installed to a sub folder after install
Update should just be
npm update
As long as you have your semantic.json file in root, it will run special update scripts on npm update to preserve your theme changes etc but add new default theme definitions/themes
Following the npm instructions on the 'Download' page (i.e. 'npm install semantic-ui') seems to download everything to the project folder specified, but when I then try to follow the getting started instructions:
'#install semantic dependencies'
npm install
it fails because there is no package.json. Am I missing something? Is this not how the node package is supposed to be used? If so, more detail should be added to the docs to make it clear what the setup procedure is.
(Note: I worked around this by just downloading the git repository, which did include the necessary files, but still feel this isn't an ideal setup experience and the documentation could be clearer)
The text was updated successfully, but these errors were encountered: