nw-style-guide

14.2.0 • Public • Published

NewsWhip Style Guide

A library of components based on Bootstrap Sass 3.x

Install

npm i --save nw-style-guide

Alternatively, the styles are available via cdn at

https://cdn.jsdelivr.net/npm/nw-style-guide@{{version}}/styles.css

or

https://unpkg.com/nw-style-guide@{{version}}/styles.css

Usage

In your SASS file:

// Import your own app variables (if you have any)
@import './variables.scss';

// Import the entire NewsWhip style guide
@import "node_modules/nw-style-guide/sass/styles.scss";

⚠️ If you are importing the entire styles.scss file you do not need to import the individual functions, mixins and variables as outlined below. The styles.scss bundle already includes these


If you wish to import only specific parts of the style guide you first need to import the core library (functions, mixins and variables). The order of these imports is important

// Import the core (required) files in this order
@import "node_modules/nw-style-guide/sass/src/functions/functions";
@import "node_modules/nw-style-guide/sass/src/mixins/mixins";
@import "node_modules/nw-style-guide/sass/src/variables";
// Now you include the specific section of the style guide you require
@import "node_modules/nw-style-guide/sass/src/labels";
@import "node_modules/nw-style-guide/sass/src/forms";

In order to use the Proxima Nova font-family that comes bundled with the Style Guide, you will need to set the $nw-font-path variable in your own variables.scss file. This variable is a path that points to the fonts folder in the installed nw-style-guide package in your node_modules folder.

// your variables.scss file
$nw-font-path: '~nw-style-guide/assets/fonts';

Development and release process

Prerequisites

  • If you don't have one, you'll need to create an npm account
  • You'll need to login on a local command line
  • Request to be added as a maintainer to the nw-style-guide npm package
  • Enable 2FA on your npm account
  • Add Font Awesome registry and authentication token to your global .npmrc file which is generated after logging in to npm
    @fortawesome:registry=https://npm.fontawesome.com/
    /npm.fontawesome.com/:_authToken=xxxxxxxxxxxxxxxxxxxxxxx // replace with Fontawesome Pro authToken
    //registry.npmjs.org/:_authToken=xxxxxxxxxxxxxxxxxxxxxxx // replace with your authToken from npm

Building local versions

Sometimes when making extensive changes that require continuous local testing inside the product we need to create local versions. For this purpose we can run the make-local-tgz script and use it as follows:

  • Make a .tgz package of Style Guide by running npm run package:make-local-tgz.
  • Copy absolute path of newly built .tgz package from console logs.
  • Paste it into the product's (e.g. Spike's) package.json file in place of the current nw-style-guide version to test your SG changes locally, without the need to publish a beta version.
  • Run npm install to install the new package version.
  • Sometimes if you dont see your changes, delete the node_modules folder from your Project (e.g. Spike) and run npm install again.
  • If you want to confirm whether or not the new style guide version has been installed, navigate to your node_modules folder and look for the style guide directory and inside the package.json file you can confirm the version number.

Building a Beta version for testing

Most of the time we would need to deploy our application (e.g. Spike) to a test env to allow others to test and to make sure the changes we have added to the style guide project are functioning and or looking as expected.

To do so we usually create a Beta version which we release to npm.

To achieve this we need to:

  • Update the version of the style guide version property in package.json to a beta version using npm version {{version_type}} for example "npm version 14.0.1-beta.0"
  • Once updated we're now ready to push the new version to npm using this command npm run package:release
  • Once that version is pushed check the npm website where the package is deployed to confirm the latest version deployed is the one you just added https://www.npmjs.com/package/nw-style-guide.
  • In your Spike or other project change the nw-style-guide version in package.json to this new version and push and deploy the changes to a test env.
  • Once changes are approved and everything is looking fine we then need to update the nw-style-guide version to remove the beta.0. to do that we call the same command we called earlier npm version {{version_type}} it can also be done manually but this command is better as it auto commits the changes. (just a note from my experience you don't need to include the beta.0 but I'm guessing i'ts good here because if we want to deploy another beta version we would only need to incremenet that 0 to 1 and so on).
  • Then we push the latest changes to Github.
  • Once approved, merge the changes into master and a new version will be released shortly automatically. You'll most likely recieve a notification via email and or slack of this new version.
  • Go back to your project (e.g. Spike) and update the nw-style-guide version in the package.json to use the new version you just committed.
  • push changes and merge, assuming it has been approved.
  • Thats it you're done.

Features and fixes

  1. Create a new feature branch off master
  2. Implement feature / fix in feature branch
  3. Create pull request
  4. Update the package version with the command npm version {{version_type}}. The version bump is automatically committed. See here for further information on the npm version command
  5. Push changes
  6. PR is approved
  7. Merge pull request to master
  8. After merging to master, the docs will be deployed to Github pages, a new release will be created (if the version in package.json has changed), and a new version will be published to npm

Manually publishing the package to npm

If there is an issue with Github Actions and we need to manually publish the package, we can do so with the npm run package:release script

💡 At the end of the package:release script you will be prompted for a one-time-password (OTP). You should get this OTP from whatever authenticator app you're using

Development

We use several npm scripts to generate modules, components and directives. The following is an example of creating a tabs module, component, and directive.

> npm run g:module tabs

> npm run g:component tabs

> npm run g:directive tabs

This is now what our src directory looks like

src directory

Further info on package release / publication

This final step in the release process above is

Publish the new package version to npm

We don't want to publish all our assets to npm, only the assets required by the consumer. In order to achieve this we run our release script which builds the required files to the distribution folder.

> npm run package:release

This script does a few things:

  1. It runs the build.js script which does the following
    • Cleans the distribution folder
    • Compiles each Angular module with ngc using the specific tsconfig.build.json for that module
    • Copies the sass folder
    • Copies the README.md
  2. Copies the package.json file
  3. Updates the copied package.json private property to false
  4. Publishes the distribution folder to npm

⚠️ Publication will fail if the version in package.json has not been updated

Github pages

We use Github pages to continuously deploy the application. This deployment is handled automatically with the build-and-deploy-docs Github workflow. Whenever the master branch is updated, you can expect this workflow to trigger.

Readme

Keywords

none

Package Sidebar

Install

npm i nw-style-guide

Weekly Downloads

157

Version

14.2.0

License

MIT

Unpacked Size

824 kB

Total Files

233

Last publish

Collaborators

  • gareth.nolan
  • dinanw
  • ajby
  • solenej
  • walidkur
  • johnjallen