Description for the playbook
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
| { | |
| "name": "@monorepo/nestjs", | |
| "version": "1.0.0", | |
| "private": true, | |
| "dependencies": {} | |
| } |
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
| { | |
| "name": "@monorepo/root", | |
| "private": true, | |
| "workspaces": { | |
| "packages": [ | |
| "workspaces/*" | |
| ], | |
| "nohoist": [ | |
| "workspaces/**/webpack-dev-server", | |
| "**/babel-loader", |
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
| /** | |
| * @requires process | |
| */ | |
| const util = require('util'); | |
| const exec = util.promisify(require('child_process').exec); | |
| /** | |
| * @requires models | |
| */ | |
| const { |
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
| @font-face { | |
| font-family: 'Netflix Sans'; | |
| font-weight: 100; | |
| font-display: optional; | |
| src: url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Th.woff2) format('woff2'),url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Th.woff) format('woff') | |
| } | |
| @font-face { | |
| font-family: 'Netflix Sans'; |
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
| // List all files in a directory in Node.js recursively in a synchronous fashion | |
| var walkSync = function(dir, filelist) { | |
| var fs = fs || require('fs'), | |
| files = fs.readdirSync(dir); | |
| filelist = filelist || []; | |
| files.forEach(function(file) { | |
| if (fs.statSync(dir + file).isDirectory()) { | |
| filelist = walkSync(dir + file + '/', filelist); | |
| } | |
| else { |
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
| postgres: | |
| image: postgres:9.4 | |
| volumes: | |
| # ~~~~~~~~~~~~~~ | |
| # | |
| # @name Migrations and Seeders | |
| # @description mapping each file as an example only, in reality you would just map the entire seeders folder | |
| # @warning the order is important | |
| # | |
| # @param path_on_your_computer:path_to_init_db_folder_in_postgres_container |
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
| html{ | |
| display:block; | |
| width:100vw; | |
| height:100vh; | |
| overflow:hidden; | |
| padding: 0px; | |
| margin: 0px; | |
| } | |
| body{ | |
| display:block; |
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
| import '@storybook/addon-knobs/register'; | |
| import '@storybook/addon-actions/register'; | |
| import '@storybook/addon-notes/register'; |