-
-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JavaScript implementation #36
Comments
arcticicestudio
added a commit
that referenced
this issue
Apr 29, 2017
arcticicestudio
added a commit
that referenced
this issue
Apr 29, 2017
arcticicestudio
added a commit
that referenced
this issue
Apr 29, 2017
arcticicestudio
added a commit
that referenced
this issue
Apr 29, 2017
arcticicestudio
added a commit
that referenced
this issue
Apr 29, 2017
arcticicestudio
added a commit
that referenced
this issue
Apr 29, 2017
arcticicestudio
added a commit
that referenced
this issue
Apr 29, 2017
arcticicestudio
added a commit
that referenced
this issue
Apr 29, 2017
arcticicestudio
added a commit
that referenced
this issue
Apr 29, 2017
arcticicestudio
added a commit
that referenced
this issue
Jul 9, 2017
9 tasks
arcticicestudio
added a commit
to nordtheme/web
that referenced
this issue
Dec 3, 2018
Since the main JavaScript implementation of Nord (1) is currently not completed and released yet, the colors and palettes will be provided "manually" via new `nord` and `palettes` modules. As soon as the implementation has been done they will be replaced through imports from the official package. References: (1) nordtheme/nord#36 GH-53
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Technology
It should be implemented using the Babel ES2016 syntax to allow the usage of the latest language features.
Features and Support
The Nord color palette should be implemented as a immutable object via the
Object.freeze()
method and should not be allowed to rebind using theconst
keyword.This allows users to import the whole color palette.
All four color palette components should also be implemented and exported as immutable and not rebindable Object.
The color constants should be initialized with the values of the main
NORD
object.This allows users to import only specific parts of the color palette.
Configurations
A
.babelrc
file should be created to set Babel configurations.Code Quality
The ESLint configurations should be updated to support the Jest unit tests.
Documentation
All JavaScript sources should be documented via JSDoc.
Unit Tests
Units tests should be implemented using Jest.
This includes the Jest specific configurations in the
package.json
which also allows to generate code coverage reports.Build Tools
The
gulpfile
should be updated to support the building of the JSDocs.WebStorm
All necessary project files (
.idea
directory) of the main development IDE should be added to track them via git.Continuous Integration
The Travis CI- and Circle CI configurations should be updated to support the new implementation.
Process
NORD
.babelrc
configuration dotfileThe text was updated successfully, but these errors were encountered: