This repository has been archived by the owner on Sep 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Split into more granular packages
- Loading branch information
Showing
878 changed files
with
162,992 additions
and
238,220 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Discord | ||
url: https://discord.iota.org/ | ||
about: Please ask and answer questions here. | ||
- name: Security vulnerabilities | ||
url: [email protected] | ||
about: Please report security vulnerabilities here. | ||
- name: Discord | ||
url: https://discord.iota.org/ | ||
about: Please ask and answer questions here. | ||
- name: Security vulnerabilities | ||
url: [email protected] | ||
about: Please report security vulnerabilities here. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: "CodeQL Config" | ||
|
||
queries: | ||
- uses: security-and-quality | ||
- uses: security-and-quality | ||
paths: | ||
- src | ||
- src |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
day: wednesday | ||
time: '06:00' | ||
timezone: Europe/Berlin | ||
labels: | ||
- L - Awaiting reviews | ||
- dependencies | ||
versioning-strategy: increase | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
day: wednesday | ||
time: "06:00" | ||
timezone: Europe/Berlin | ||
labels: | ||
- L - Awaiting reviews | ||
- dependencies | ||
versioning-strategy: increase |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,24 @@ | ||
name: Library Build Main/Dev | ||
|
||
on: | ||
push: | ||
branches: [main, dev] | ||
paths: | ||
- "src/**" | ||
- ".github/workflows/build.yml" | ||
pull_request: | ||
branches: [dev] | ||
paths: | ||
- "src/**" | ||
- ".github/workflows/build.yml" | ||
|
||
push: | ||
branches: [main, dev] | ||
pull_request: | ||
branches: [dev] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js 14.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: "14" | ||
- name: npm 7 | ||
run: npm install -g npm@7 | ||
- name: Client Build | ||
run: | | ||
npm install | ||
npm run dist | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js 14.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: "14" | ||
- name: npm 7 | ||
run: npm install -g npm@7 | ||
- name: Build | ||
run: | | ||
npm install | ||
npm run dist --workspaces |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,40 @@ | ||
name: "CodeQL" | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
paths: | ||
- 'src/**' | ||
- '.github/codeql/**' | ||
- '.github/workflows/codeql-analysis.yml' | ||
pull_request: | ||
paths: | ||
- 'src/**' | ||
- '.github/codeql/**' | ||
- '.github/workflows/codeql-analysis.yml' | ||
schedule: | ||
- cron: '0 0 * * *' | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
paths: | ||
- "src/**" | ||
- ".github/codeql/**" | ||
- ".github/workflows/codeql-analysis.yml" | ||
pull_request: | ||
paths: | ||
- "src/**" | ||
- ".github/codeql/**" | ||
- ".github/workflows/codeql-analysis.yml" | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
jobs: | ||
CodeQL-Build: | ||
runs-on: ubuntu-latest | ||
CodeQL-Build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 2 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 2 | ||
|
||
- run: git checkout HEAD^2 | ||
if: ${{ github.event_name == 'pull_request' }} | ||
- run: git checkout HEAD^2 | ||
if: ${{ github.event_name == 'pull_request' }} | ||
|
||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v1 | ||
with: | ||
languages: javascript | ||
config-file: ./.github/codeql/codeql-config.yml | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v1 | ||
with: | ||
languages: javascript | ||
config-file: ./.github/codeql/codeql-config.yml | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v1 | ||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v1 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.git | ||
.vscode | ||
coverage | ||
dist | ||
build | ||
target | ||
docs | ||
es | ||
node_modules | ||
typings | ||
*.md | ||
*.html | ||
package-lock.json |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"semi": true, | ||
"trailingComma": "none", | ||
"singleQuote": false, | ||
"printWidth": 120, | ||
"tabWidth": 4, | ||
"useTabs": false, | ||
"arrowParens": "avoid", | ||
"overrides": [ | ||
{ | ||
"files": "*.yaml", | ||
"options": { | ||
"tabWidth": 2 | ||
} | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains 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
Oops, something went wrong.