Skip to content

Instantly share code, notes, and snippets.

View alebelcor's full-sized avatar

Alejandro alebelcor

View GitHub Profile
@alebelcor
alebelcor / TemplateDataDocumentation.jsx
Last active April 12, 2022 22:27
Template data components RFC
const TemplateDataDocumentationContext = createContext({});
const TemplateDataDocumentationProviderProps = {
children: PropTypes.node.isRequired,
};
export const TemplateDataDocumentationProvider = ({ children }) => {
const templateDataDocumentationTuple = useState({});
return (
@alebelcor
alebelcor / readme.md
Last active February 15, 2024 17:47
How to deprecate a repository/npm package

How to deprecate a repository/npm package

  1. Add [DEPRECATED] repository description on GitHub
  2. Add deprecated topic to repository
  3. Update readme.md
    1. Add DEPRECATED as a new <h1> up top
    2. Add an "unmaintained" badge (e.g. No Maintenance Intended)
    3. Add a suggestion replacement
    4. Add a horizontal rule
  4. Commit and push changes to GitHub