Skip to content

Bump eventsource from 1.1.0 to 1.1.1 #11

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 50 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
3b8d73d
first commit
sumi0820 Apr 22, 2022
b0a966e
Merge pull request #8 from hashcloak/renewal
sumi0820 Apr 22, 2022
a77c384
update package.json
sumi0820 Apr 22, 2022
be170bf
update route setting
sumi0820 Apr 22, 2022
9b88536
update for netlify delploy
sumi0820 Apr 22, 2022
a5e721d
Create Routes.tsx
sumi0820 Apr 22, 2022
b64d1b8
Delete Routes.tsx
sumi0820 Apr 22, 2022
b6b68d1
Update index.html
sumi0820 Apr 22, 2022
6357b34
Added Tailwind CSS for replacing
sumi0820 May 16, 2022
b3e3ca1
Updated nav bar
sumi0820 May 17, 2022
acf830b
Updated nav bar
sumi0820 May 17, 2022
3411a03
Updated main visual section
sumi0820 May 17, 2022
1d3156d
Updated mission section
sumi0820 May 17, 2022
900de4a
Updated products section
sumi0820 May 17, 2022
ec62b2e
Updated service section
sumi0820 May 17, 2022
542c035
Updated research section
sumi0820 May 17, 2022
3f48ce7
Updated supporters section
sumi0820 May 18, 2022
5e0b9a3
Updated contact section
sumi0820 May 18, 2022
208cd2d
Updated announcement section
sumi0820 May 18, 2022
52fab1e
Added common container
sumi0820 May 19, 2022
1c10573
Added header and main visual to html
sumi0820 May 20, 2022
e93166c
Added mission section to html
sumi0820 May 20, 2022
6086c23
Added products section to html
sumi0820 May 20, 2022
580ad0c
Added Service section to html
sumi0820 May 20, 2022
a757443
Added research section to html
sumi0820 May 20, 2022
5606a35
Added supporters and announcements sections to html
sumi0820 May 22, 2022
f1dfd33
Added contact section to html
sumi0820 May 22, 2022
556ba9c
Added footer section to html
sumi0820 May 22, 2022
2dace8c
Updated burger menu
sumi0820 May 26, 2022
9ffab5d
Added github actioons
sumi0820 May 26, 2022
a979abe
Update index.html
sumi0820 May 26, 2022
bf90d69
Delete deploy-dev.yml
sumi0820 May 26, 2022
0161066
Create deploy-dev.yml
sumi0820 May 26, 2022
ed0157d
Create netlify.toml
sumi0820 May 26, 2022
d91cea8
Readded
sumi0820 May 26, 2022
1255e1b
Updated burger menu
sumi0820 May 26, 2022
75ee950
Update index.css
sumi0820 May 26, 2022
ada6144
Updated burger menu
sumi0820 May 26, 2022
75ce210
Updated burger menu
sumi0820 May 26, 2022
2d6ca04
Updated
sumi0820 May 26, 2022
4e6c333
Update index.css
sumi0820 May 26, 2022
a16fa32
Updated burger menu
sumi0820 May 26, 2022
9526208
Added flowbite for burger menu
sumi0820 May 26, 2022
157e28a
Updated burger menu
sumi0820 May 26, 2022
be6b36f
Removed description from supporters section as it's duplicated.
sumi0820 May 27, 2022
a4d1326
Update index.html
sumi0820 May 27, 2022
fd1259c
Added the company logo to header
sumi0820 May 27, 2022
24fbbcd
Updated background of nav
sumi0820 May 27, 2022
eec3c88
Merge pull request #10 from hashcloak/develop
sumi0820 May 27, 2022
3caa5ef
Bump eventsource from 1.1.0 to 1.1.1
dependabot[bot] Jun 1, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
build/
public/
**/coverage/
**/node_modules/
**/*.min.js
*.config.js
.*lintrc.js
122 changes: 122 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
'plugin:react/recommended',
'airbnb',
'airbnb/hooks',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'prettier',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 12,
project: './tsconfig.eslint.json',
sourceType: 'module',
tsconfigRootDir: __dirname,
},
plugins: [
'@typescript-eslint',
'import',
'jsx-a11y',
'prefer-arrow',
'react',
'react-hooks',
],
root: true,
rules: {
// occur error in `import React from 'react'` with react-scripts 4.0.1
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': [
'error',
],
'lines-between-class-members': [
'error',
'always',
{
exceptAfterSingleLine: true,
},
],
'no-void': [
'error',
{
allowAsStatement: true,
},
],
'padding-line-between-statements': [
'error',
{
blankLine: 'always',
prev: '*',
next: 'return',
},
],
'@typescript-eslint/no-unused-vars': [
'error',
{
'vars': 'all',
'args': 'after-used',
'argsIgnorePattern': '_',
'ignoreRestSiblings': false,
'varsIgnorePattern': '_',
},
],
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
},
],
'prefer-arrow/prefer-arrow-functions': [
'error',
{
disallowPrototype: true,
singleReturnOnly: false,
classPropertiesAllowed: false,
},
],
'react/jsx-filename-extension': [
'error',
{
extensions: ['.jsx', '.tsx'],
},
],
'react/jsx-props-no-spreading': [
'error',
{
html: 'enforce',
custom: 'enforce',
explicitSpread: 'ignore',
},
],
'react/react-in-jsx-scope': 'off',
},
overrides: [
{
'files': ['*.tsx'],
'rules': {
'react/prop-types': 'off',
},
},
],
settings: {
'import/resolver': {
node: {
paths: ['src'],
},
},
},
};
35 changes: 35 additions & 0 deletions .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: deploy to netlify - dev

on:
push:
branches: [ develop ]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x]

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'

- run: yarn
- run: yarn build

- name: Codecov
uses: codecov/[email protected]

- name: Deploy static content to netlify
env:
NETLIFY_AUTH_TOKEN: "6_RbCFxs3Y--PPpYAyog9EIu_0W6xbsk_rfEBgMLsBw"
NETLIFY_SITE_ID: "8ad84bcd-efb4-4fca-9c3a-9a61585a0d1d"
run: netlify deploy --prod

130 changes: 128 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
Expand All @@ -19,9 +18,136 @@
.env.test.local
.env.production.local


# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*


### https://raw.github.com/github/gitignore/218a941be92679ce67d0484547e3e142b2f5f6f0/Global/VisualStudioCode.gitignore

.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace

/archive
# Local History for Visual Studio Code
.history/

# Netlify
.netlify
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"singleQuote": true,
"trailingComma": "all",
"endOfLine": "auto"
}
15 changes: 15 additions & 0 deletions .stylelintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
extends: [
'stylelint-config-standard',
'stylelint-config-recess-order',
],
plugins: [
'stylelint-order',
],
ignoreFiles: [
'**/node_modules/**',
],
rules: {
'string-quotes': 'single',
},
};
20 changes: 20 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp

// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"CoenraadS.bracket-pair-colorizer-2",
"dbaeumer.vscode-eslint",
"donjayamanne.githistory",
"esbenp.prettier-vscode",
"msjsdiag.debugger-for-chrome",
"oderwat.indent-rainbow",
"stylelint.vscode-stylelint",
"VisualStudioExptTeam.vscodeintellicode",
"vscode-icons-team.vscode-icons",
"wix.vscode-import-cost"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
}
39 changes: 39 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"css.validate": false,
"less.validate": false,
"scss.validate": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": false,
"[graphql]": {
"editor.formatOnSave": true
},
"[javascript]": {
"editor.formatOnSave": true
},
"[javascriptreact]": {
"editor.formatOnSave": true
},
"[json]": {
"editor.formatOnSave": true
},
"[typescript]": {
"editor.formatOnSave": true
},
"[typescriptreact]": {
"editor.formatOnSave": true
},
"editor.lineNumbers": "on",
"editor.rulers": [
80
],
"editor.wordWrap": "on",
"eslint.packageManager": "yarn",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"npm.packageManager": "yarn",
"typescript.enablePromptUseWorkspaceTsdk": true
}
1 change: 0 additions & 1 deletion CNAME

This file was deleted.

Loading