Skip to content

Commit

Permalink
chore: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ifiokjr committed Jan 15, 2021
0 parents commit aa3e427
Show file tree
Hide file tree
Showing 14,074 changed files with 629,382 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
5 changes: 5 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works with multi-package repos, or single-package repos to help you version and publish your code. You can find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in [our documentation](https://github.com/changesets/changesets/blob/master/docs/common-questions.md)
19 changes: 19 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"$schema": "https://unpkg.com/@changesets/config@1.3.0/schema.json",
"changelog": "@changesets/cli/changelog",
"ignore": ["website", "support"],
"updateInternalDependencies": "patch",
"commit": false,
"linked": [
[
"svgmoji",
"@svgmoji/blob",
"@svgmoji/core",
"@svgmoji/noto",
"@svgomoji/openmoji",
"@svgmoji/twemoji"
]
],
"access": "public",
"baseBranch": "main"
}
10 changes: 10 additions & 0 deletions .changeset/tidy-beers-serve.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
'svgmoji': minor
'@svgmoji/blob': minor
'@svgmoji/core': minor
'@svgmoji/noto': minor
'@svgmoji/openmoji': minor
'@svgmoji/twemoji': minor
---

Create the initial launch of the `svgmoji` project.
15 changes: 15 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.134.0/containers/javascript-node/.devcontainer/base.Dockerfile
ARG VARIANT="14"
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT}

# Install additional OS packages
RUN apt-get update -yq && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -yq install --no-install-recommends nano \
# Install Git LFS
&& curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash \
&& apt-get install -yq git-lfs \
&& git lfs install

ARG PNPM_VERSION="5.15.0"
# Install more global node modules
RUN sudo -u node npm install -g pnpm@${PNPM_VERSION}
27 changes: 27 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.134.0/containers/javascript-node
{
"name": "template",
"build": {
"dockerfile": "Dockerfile",
// Update 'VARIANT' to pick a Node version: 10, 12, 14
"args": { "VARIANT": "14" }
},

// Set *default* container specific settings.json values on container create.
"settings": {
"terminal.integrated.shell.linux": "/bin/zsh"
},

// Add the IDs of extensions you want installed when the container is created.
"extensions": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"],

// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [3000, 6006, 3030],

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "pnpm install",

// Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "node"
}
12 changes: 12 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Generated files we don't want to see in code review/diff
docs/generated/gatsby.ts binary

**/__image_snapshots__/*.* binary
**/__image_snapshots__/*.* filter=lfs diff=lfs merge=lfs -text

*.png filter=lfs diff=lfs merge=lfs -text
*.gif filter=lfs diff=lfs merge=lfs -text
*.sketch filter=lfs diff=lfs merge=lfs -text
*.jpeg filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.ico filter=lfs diff=lfs merge=lfs -text
29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: 🐞 Report a bug
about: Found something broken? Let us know! If it's not yet reproducible, please `Ask a question` instead.
labels: 'type: bug :beetle:'
---

### Summary

<!-- A brief summary of the problem. -->

### Steps to reproduce

<!-- All bug reports should include detailed steps to reproduce -->

### Expected results

<!-- Outline what you expected to see -->

### Actual results

<!-- Outline the actual results -->

### Additional context

<!-- Optionally provide additional context such as browser version / device etc... -->

### Possible Solution

<!--- Optionally suggest a fix or reason for the bug -->
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
blank_issues_enabled: false

# Remove this file if you don't have **Discussions** enabled for your project.
contact_links:
- name: 💡 Discuss an idea
url: https://github.com/svgmoji/svgmoji/discussions/new
about:
Suggest your ideas for this project. Discussions with high interest and positive feedback will
be added to the roadmap.

- name: ❔ Ask a question
url: https://github.com/svgmoji/svgmoji/discussions/new
about: Ask questions and discuss with other community members.

- name: 🙏 Request help
url: https://github.com/svgmoji/svgmoji/discussions/new
about: Ask the `remirror` community for help.

- name: 🌟 Showcase your work
url: https://github.com/svgmoji/svgmoji/discussions/new
about: Showcase what you've been building with `remirror`.
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/project-roadmap.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: 📥 Add to the project roadmap
about: 'Create an issue for concrete work to add to project roadmap. For ideas and questions, choose `Discuss an idea` or `Ask a question` instead.'
---

### Description

<!--- Provide a detailed explanation of the issue and your reasons for creating it as well as any expected outcomes. -->

### Context

<!--- Provide more context as to why this is important. Any links to where it has previously been discussed or implemented will be appreciated. -->
26 changes: 26 additions & 0 deletions .github/actions/pnpm/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: 'pnpm installation'
description: 'Install and audit dependencies for pnpm'
inputs:
cache: # id of input
description: 'The location of the pnpm cache'
required: true
default: '.pnpm-store'
version: # id of input
description: 'The version to use'
required: false
default: 5.15.0

runs:
using: 'composite'
steps:
- name: install pnpm
run: npm install pnpm@${{ inputs.version }} -g
shell: bash

- name: setup pnpm config
run: pnpm config set store-dir ${{ inputs.cache }}
shell: bash

- name: install dependencies
run: pnpm install
shell: bash
16 changes: 16 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
### Description

<!-- Describe your changes in detail and reference any issues it addresses-->

### Checklist

<!-- Go over all the following points, and put an `x` in all the boxes that apply. -->

- [ ] I have read the [**contributing**](https://github.com/svgmoji/svgmoji/blob/HEAD/docs/contributing.md) document.
- [ ] My code follows the code style of this project and `pnpm fix` completed successfully.
- [ ] I have updated the documentation where necessary.
- [ ] New code is unit tested and all current tests pass when running `pnpm test`.

### Screenshots

<!-- Delete this section if not applicable -->

0 comments on commit aa3e427

Please sign in to comment.