This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| node-sass --importer node_modules/node-sass-package-importer/dist/cli.js source/app.sass dest/app.css | |
| eg. node-sass src/app/config/theme/theme.scss sample.css --importer=node_modules/node-sass-package-importer/dist/cli.js | |
| Install the node-sass-package-importer | |
| https://stackoverflow.com/questions/48380971/compile-sass-and-import-from-node-modules |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const FRIEND_STATE_TREE = { | |
| initial: 'IDLE', | |
| states: { | |
| IDLE: { | |
| on: { | |
| 'ON_LOAD_FRIEND_FEED': 'FRIEND_FEED_WAITING', | |
| }, | |
| }, | |
| FRIEND_FEED_WAITING: { | |
| entry: 'test', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |