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
{{ message }}
This repository has been archived by the owner on Jul 5, 2019. It is now read-only.
Use Webpacker to transform and transpile source files
These are just some of my suggestions. Someone else can get started on these before me. If not I will try my best to send in some pull requests in couple of weeks time.
The text was updated successfully, but these errors were encountered:
Splitting the css is definately a good idea. What do you think would be the most logical way to split it up?
As for the external libraries, I modified the bibTex parser to fix some issues parsing files exported from Papers but for crossref npm is probably the way to go.
With regards to CSS, there are some great methodologies out there. Personally, a fan of SMACSS https://smacss.com/book/type-base. I use some variants of it for most of my front-end web projects.
For the external JS libraries, it is almost always better to use a package manager.
Webpack (not webpacker, my bad) basically transforms source files to a desired format. For instance, if you use SCSS to write styles, you could instruct webpack to transform them to an output CSS. That way, you do not have duplicate content in the repository (ie. source file and its compiled version).
Started a new branch (webpack) that uses webpack for transpiling the javascript. Still working out the kinks. Will move on to include css once the javascript is all working nicely.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
scss
These are just some of my suggestions. Someone else can get started on these before me. If not I will try my best to send in some pull requests in couple of weeks time.
The text was updated successfully, but these errors were encountered: