Skip to content

Commit

Permalink
fix: missing empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
jdabbech-ledger committed Dec 27, 2023
1 parent e0d1f90 commit d70dafb
Show file tree
Hide file tree
Showing 16 changed files with 23 additions and 22 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Ledger Device SDK
Ledger Device SDK
2 changes: 1 addition & 1 deletion packages/config/eslint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"eslint-plugin-only-warn": "^1.1.0",
"prettier": "^3.1.1"
}
}
}
5 changes: 3 additions & 2 deletions packages/config/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@ledgerhq/tsconfig-dsdk",
"version": "0.0.2",
"version": "1.0.0",
"private": true,
"files": [
"sdk.json",
"web.json"
Expand All @@ -12,4 +13,4 @@
"@types/eslint": "^8.44.9",
"@types/react-dom": "^18"
}
}
}
2 changes: 1 addition & 1 deletion packages/config/typescript/sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
"emitDecoratorMetadata": true
},
"exclude": ["node_modules"]
}
}
Empty file removed packages/core/.gitignore
Empty file.
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"/lib"
],
"scripts": {
"build": "tsc",
"build": "rm -rf lib && tsc",
"dev": "tsc --watch",
"lint": "eslint --cache --ext .ts \"src\"",
"lint:fix": "eslint --cache --fix --ext .ts \"src\"",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/transport/ble/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { BleTransport } from "./BleTransport"
export { BleTransport } from "./BleTransport";
4 changes: 2 additions & 2 deletions packages/core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"compilerOptions": {
"outDir": "./lib"
},
"include": ["src/**/*", "jest.config.ts", "tests/**/*"]
}
"include": ["src/**/*"]
}
2 changes: 1 addition & 1 deletion packages/signer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"/lib"
],
"scripts": {
"build": "tsc",
"build": "rm -rf lib && tsc",
"dev": "tsc --watch",
"lint": "eslint --cache --ext .ts \"src\"",
"lint:fix": "eslint --cache --fix --ext .ts \"src\"",
Expand Down
4 changes: 2 additions & 2 deletions packages/signer/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"compilerOptions": {
"outDir": "./lib"
},
"include": ["src/**/*", "jest.config.ts", "tests/**/*"]
}
"include": ["src/**/*"]
}
2 changes: 1 addition & 1 deletion packages/trusted-apps/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"/lib"
],
"scripts": {
"build": "tsc",
"build": "rm -rf lib && tsc",
"lint": "eslint --cache --ext .ts \"src\"",
"lint:fix": "eslint --cache --fix --ext .ts \"src\"",
"dev": "tsc --watch",
Expand Down
4 changes: 2 additions & 2 deletions packages/trusted-apps/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"compilerOptions": {
"outDir": "./lib"
},
"include": ["src/**/*", "jest.config.ts", "tests/**/*"]
}
"include": ["src/**/*"]
}
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"/lib"
],
"scripts": {
"build": "tsc",
"build": "rm -rf lib && tsc",
"dev": "tsc --watch",
"lint": "eslint --cache --ext .ts \"src\"",
"lint:fix": "eslint --cache --fix --ext .ts \"src\"",
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"compilerOptions": {
"outDir": "./lib"
},
"include": ["src/**/*", "jest.config.ts", "tests/**/*"]
}
"include": ["src/**/*"]
}
6 changes: 3 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
packages:
- "apps/*"
- "packages/*"
- "packages/config/*"
- "packages/config/*"

0 comments on commit d70dafb

Please sign in to comment.