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
> *Note:* For offline usage we'll need to set `$font-path: '~carbon-components/src/globals/fonts';` at the very top of our `src/styles.scss`. This will copy the fonts to our `dist` folder upon successful build. If you like the fonts to be a part of your `assets` folder and not polute the `dist` folder then copy the fonts from `node_modules/carbon-components/src/globals/fonts` into our app's `src/assets/fonts` folder and add `$font-path: '/assets/fonts/';` at the very top of our `src/styles.scss`.
20
+
> *Note:* For offline usage we'll need to set `$font-path: '~carbon-components/src/globals/fonts';` at the very top of our `src/styles.scss`. This will copy the fonts to our `dist` folder upon successful build. If you like the fonts to be a part of your `assets` folder and not pollute the `dist` folder then copy the fonts from `node_modules/carbon-components/src/globals/fonts` into our app's `src/assets/fonts` folder and add `$font-path: '/assets/fonts/';` at the very top of our `src/styles.scss`.
21
21
22
22
Then set up our translations in `src/app/app.module.ts`:
23
23
@@ -66,7 +66,7 @@ _Finally_ we can run `npm start` and start building out our application!
66
66
- attach a screenshot (or a gif!) for design reference if needed
67
67
- reference the related issue
68
68
- "closes #123" or "fixes #123" will close issue #123 once the PR is merged
69
-
- "issue #123" just refences the issue. Only use this if you definitly need the issue to remain open.
69
+
- "issue #123" just references the issue. Only use this if you definitely need the issue to remain open.
70
70
-@mention any specific other developers that need to be aware of the changes
71
71
- add the "needs review" label along with any other relevant labels
72
72
-[link to code review checklist goes here](#)
@@ -83,11 +83,11 @@ _Finally_ we can run `npm start` and start building out our application!
83
83
- screenshots if needed
84
84
- relevant code snippets
85
85
- links to application source code or running demo ([Codesandbox is awesome for this!](https://codesandbox.io/s/angular)) (including connection/authentication information)
- if you have a fix to contribute, assign yourself, otherwise leave unassigned
88
88
89
89
#### npm commands
90
-
To keep our build dependancies local we use npm scripts to run our webpack, gulp, and general build tasks. You should never install webpack or gulp globally as that will likely conflict with our version. You should never need to modify the build process to add a component or story.
90
+
To keep our build dependencies local we use npm scripts to run our webpack, gulp, and general build tasks. You should never install webpack or gulp globally as that will likely conflict with our version. You should never need to modify the build process to add a component or story.
0 commit comments