- “Inherent Vice” (Paul Thomas Anderson, 2014)
- “The Loneliest Planet” (Julia Loktev, 2011)
- “The Great Gatsby” (Baz Luhrmann, 2013)
- “All These Sleepless Nights” (Michal Marczak, 2016)
- “Girl Walk // All Day” (Jacob Krupnick, 2011)
- “The Arbor” (Clio Barnard, 2010)
- “Happy Hour” (Hamaguchi Ryūsuke, 2015)
- “Mother of George” (Andrew Dosunmu, 2013)
- “Spider-Man: Into the Spider-Verse” (Bob Persichetti, Peter Ramsey & Rodney Rothman, 2018)
- “Fire at Sea” (Gianfranco Rosi, 2016)
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
| /* | |
| * AUTHOR <your name> | |
| * EMAIL <your seneca email id> | |
| * SENECA ID <your seneca id> | |
| * DESCRIPTION Print message to the screen | |
| */ | |
| #include<stdio.h> | |
| #include<math.h> |
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": "stardust", | |
| "version": "1.0.0", | |
| "main": "dist/index.js", // Main file | |
| "module": "dist/index.es.js", // Main file (ES) | |
| "jsnext:main": "dist/index.es.js", // Main file (ES) | |
| "author": "Wise Introvert", | |
| "license": "MIT", | |
| "types": "dist/index.d.js", // Specify file/folder that'll hold generated types | |
| "files": [ // ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ |
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 typescript from "rollup-plugin-typescript2"; | |
| import { terser } from "rollup-plugin-terser"; | |
| import pkg from "./package.json"; | |
| export default { | |
| input: "src/index.tsx", | |
| output: [ | |
| { | |
| file: pkg.main, |
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
Show hidden characters
| { | |
| "compilerOptions": { | |
| "declaration": true, | |
| "declarationDir": "./dist", | |
| "forceConsistentCasingInFileNames": true, | |
| "noImplicitAny": true, | |
| "jsx": "react-jsx", | |
| "lib": ["es5", "dom"], | |
| "module": "esnext", | |
| "moduleResolution": "node", |
- Yarn
- TypeScript
- Eslint
- Rollup
- Storybook
- React Testing Library
- Pre-commit hooks
- dependency management tools
- Playground applications
- Create an empty directory and cd into it
$ mkdir your-component-library && cd your-component-library
- Initialize yarn
$ yarn init
- Initialize eslint
$ eslint --init # OR "npx eslint --init" if eslint isn't installed globally on your machine
- Initialize typescript: create
tsconfig.jsonfile with the following content:
{
"compilerOptions": {
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
| //*****************************GLOBAL*****************************// | |
| /** | |
| * @NotOnlyCurrentDoc | |
| */ | |
| const ind_data_sheet = SpreadsheetApp.openById( | |
| "REDACTED" | |
| ).getActiveSheet(); | |
| const fam_data_sheet = SpreadsheetApp.openById( | |
| "REDACTED" | |
| ).getActiveSheet(); |
NewerOlder