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
// https://github.com/tailwindlabs/tailwindcss/issues/1595#issuecomment-617131891 | |
const resolveConfig = require("tailwindcss/resolveConfig"); | |
function mapObject(fn, obj) { | |
if (typeof Object.fromEntries === "function") | |
return Object.fromEntries(Object.entries(obj).map(fn)); | |
return Object.entries(obj).reduce((acc, [key, val], idx, entries) => { | |
const [newKey, newVal] = fn([key, val], idx, entries); | |
return { ...acc, [newKey]: newVal }; |
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
{"version":1,"resource":"file:///Users/Adam/Projects/levelnine/netclean-web/components/blocks/article-video-block.stories.jsx","entries":[{"id":"5pio.jsx","source":"Workspace Edit","timestamp":1657113013689},{"id":"BFOy.jsx","source":"searchReplace.source","timestamp":1657113051771},{"id":"tZMW.jsx","source":"Workspace Edit","timestamp":1657113419792},{"id":"y04N.jsx","source":"Workspace Edit","timestamp":1657113461204}]} |
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
var TEST_WEBHOOK = PropertiesService.getScriptProperties().getProperty('SLACK_TEST_WEBHOOK'); | |
var PROD_WEBHOOK = PropertiesService.getScriptProperties().getProperty('SLACK_PROD_WEBHOOK'); | |
function setInspirationTrigger() { | |
ScriptApp.newTrigger('sendInspirationOnWeekday') | |
.timeBased() | |
.everyDays(1) | |
.atHour(09) | |
.nearMinute(00) | |
.create() |
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
// Place your key bindings in this file to override the defaultsauto[] | |
[ | |
{ | |
"key": "shift+cmd+t", | |
"command": "workbench.action.terminal.new", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "cmd+w", | |
"command": "workbench.action.terminal.kill", |
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Mocha All", | |
"program": "${workspaceFolder}/packages/server/node_modules/mocha/bin/_mocha", | |
"args": ["-r", "ts-node/register", "--timeout", "999999", "--colors", "${workspaceFolder}/packages/server/src/modules/**/*.test.ts"], | |
"cwd": "${workspaceFolder}/packages/server", |
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
{ | |
"editor.formatOnSave": true, | |
"git.enabled": false, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/node_modules": false |