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 pacote = require("pacote") | |
const semver = require("semver") | |
const mainPackageName = "Name of the main package. e.g. gatsby"; | |
const mainPackageVersion = "The version of the main package to lock to. e.g. 3.0.0"; | |
const packages = [ | |
// List of the ecosystem packages to check for compatibality with the main package. | |
] | |
packages.forEach(package => { |
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
// addUuidToButton.js | |
const j = require("jscodeshift"); | |
const crypto = require("crypto"); | |
function generateUUID(filePath, position) { | |
const str = filePath + JSON.stringify(position); | |
return crypto.createHash("md5").update(str).digest("hex").substr(0, 5); | |
} | |
const importPaths = ["components"]; |
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: projectname | |
root: ~/Desktop/projectname/ | |
on_project_first_start: | |
- cd crm-admin | |
- yarn | |
- cd ../design-system | |
- yarn | |
startup_window: user-scripts | |
windows: | |
- crm-admin: |
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
{"lastUpload":"2019-12-20T04:46:25.392Z","extensionVersion":"v3.4.3"} |
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
render() { | |
return withPagination('users', 'followers', 'https://.../users')(UsersView) | |
} |