fix all errors resulting from running 'npx lerna bootstrap', hoist github actions to top, hoist vscode config to top

This commit is contained in:
Greg Weisbrod
2021-11-07 18:13:47 -05:00
parent 1106ad1405
commit 99c817ca8a
34 changed files with 15138 additions and 15703 deletions

View File

@@ -1,21 +0,0 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: weekly
time: "15:00"
open-pull-requests-limit: 20
ignore:
- dependency-name: "@types/node"
versions:
- 14.14.25
- 14.14.28
- 14.14.32
- dependency-name: typescript
versions:
- 4.2.2
- dependency-name: ts-jest
versions:
- 26.5.0
- 26.5.2

View File

@@ -1,32 +0,0 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 13.x, 14.x]
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run compile
- run: npm test
- run: npm run lint

View File

@@ -1,5 +0,0 @@
{
"cSpell.words": [
"secp256k1"
]
}

View File

@@ -5,6 +5,7 @@
"requires": true,
"packages": {
"": {
"name": "ripple-address-codec",
"version": "4.1.3",
"license": "ISC",
"dependencies": {

View File

@@ -15,15 +15,15 @@
},
"repository": {
"type": "git",
"url": "git://github.com/ripple/ripple-address-codec.git"
"url": "git@github.com:XRPLF/xrpl.js.git"
},
"prepublish": "tsc",
"prepublishOnly": "tslint -p ./ && jest",
"prepublish": "tsc -b",
"prepublishOnly": "tslint -b ./ && jest",
"scripts": {
"build": "tsc",
"compile": "tsc",
"build": "tsc -b",
"test": "jest",
"lint": "tslint -p ./"
"lint": "tslint -p ./",
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo"
},
"devDependencies": {
"@types/jest": "^27.0.2",

View File

@@ -1,24 +1,19 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"target": "es6",
"lib": [
"es2017"
],
"outDir": "dist",
"rootDir": "src",
"module": "commonjs",
"moduleResolution": "node",
"rootDir": "./src",
"outDir": "./dist",
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": false,
"preserveConstEnums": false,
"suppressImplicitAnyIndexErrors": false,
"sourceMap": true,
"skipLibCheck": true,
"declaration": true,
"strict": true
"declaration": true
},
"include": [
"src/**/*.ts"
]
"include": ["src/**/*.ts"]
}