I have a CSS file that I want to upload to npm. My project's folder structure is as follows:
my-project (folder)
|
+---- css (folder)
|
+---- my-project.css
|
+---- my-project.min.css
When I try to upload my project to NPM, it asks for an entry point, where the default is set to index.js
. For my case where there are only 2 files inside a folder called css
, what should it be? Moreover, what is the meaning of the entry-point for an npm project?