chore: remove tsc build from local workspaces (#2020)

This commit is contained in:
Mo 2022-11-16 18:13:28 -06:00 committed by GitHub
parent 87e66e2342
commit 4fa8066402
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
31 changed files with 85 additions and 156 deletions

View File

@ -2,9 +2,9 @@
"extends": "./node_modules/@standardnotes/config/src/tsconfig.json",
"compilerOptions": {
"module": "esnext",
"target": "es5",
"target": "es6",
"lib": ["es6", "dom", "es2016", "es2017"],
"types": ["react"],
"types": ["react", "jest"],
"jsx": "react-jsx",
"declaration": true,
"moduleResolution": "node",

19
common.jest.json Normal file
View File

@ -0,0 +1,19 @@
{
"collectCoverageFrom": ["src/**/*.{ts,tsx}", "!**/index.ts"],
"coverageReporters": ["text", "lcov", "html", "json-summary"],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"testPathIgnorePatterns": ["/node_modules/"],
"coveragePathIgnorePatterns": ["/node_modules/"],
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json"],
"transform": {
"^.+\\.tsx?$": ["ts-jest", { "tsconfig": "tsconfig.json" }]
},
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}

View File

@ -1,12 +1,10 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires
const base = require('../../node_modules/@standardnotes/config/src/jest.json');
const base = require('../../common.jest.json')
module.exports = {
...base,
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
},
transform: {
'^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.json' }],
},
coverageThreshold: {
global: {

View File

@ -8,3 +8,5 @@ export * from './WebSocket/WebSocketApiService'
export * from './WebSocket/WebSocketApiServiceInterface'
export * from './Workspace/WorkspaceApiService'
export * from './Workspace/WorkspaceApiServiceInterface'
export * from './Workspace/WorkspaceUser'
export * from './Workspace/Workspace'

View File

@ -1,4 +1,4 @@
import { Workspace } from '@standardnotes/models'
import { Workspace } from './../../Client/Workspace/Workspace'
export type WorkspaceListResponseBody = {
ownedWorkspaces: Array<Workspace>

View File

@ -1,4 +1,4 @@
import { WorkspaceUser } from '@standardnotes/models'
import { WorkspaceUser } from './../../Client/Workspace/WorkspaceUser'
export type WorkspaceUserListResponseBody = {
users: Array<WorkspaceUser>

View File

@ -4,7 +4,7 @@
"private": true,
"main": "./src/index.ts",
"scripts": {
"start": "tsc -p tsconfig.json --watch"
"tsc": "tsc -p tsconfig.json"
},
"dependencies": {
"@lexical/react": "^0.6.0",

View File

@ -1,11 +1,6 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires
const base = require('../../node_modules/@standardnotes/config/src/jest.json');
const base = require('../../common.jest.json')
module.exports = {
...base,
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
},
}
};
}

View File

@ -1,11 +1,6 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires
const base = require('../../node_modules/@standardnotes/config/src/jest.json');
const base = require('../../common.jest.json')
module.exports = {
...base,
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
},
}
};
}

View File

@ -1,14 +1,7 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires
const base = require('../../node_modules/@standardnotes/config/src/jest.json');
const base = require('../../common.jest.json')
module.exports = {
...base,
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
},
},
coveragePathIgnorePatterns: [
"/example/"
]
};
coveragePathIgnorePatterns: ['/example/'],
}

View File

@ -1,11 +1,6 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires
const base = require('../../node_modules/@standardnotes/config/src/jest.json');
const base = require('../../common.jest.json')
module.exports = {
...base,
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
},
}
};
}

View File

@ -1,6 +1,6 @@
import AsyncStorage from '@react-native-community/async-storage'
import SNReactNative from '@standardnotes/react-native-utils'
import { AppleIAPReceipt } from '@standardnotes/services/dist/Domain/Subscription/AppleIAPReceipt'
import { AppleIAPReceipt } from '@standardnotes/services'
import {
AppleIAPProductId,
ApplicationIdentifier,

View File

@ -1,11 +1,6 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires
const base = require('../../node_modules/@standardnotes/config/src/jest.json');
const base = require('../../common.jest.json')
module.exports = {
...base,
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
},
}
};
}

View File

@ -5,19 +5,11 @@
"node": ">=16.0.0 <17.0.0"
},
"description": "Models used in SNJS library",
"main": "dist/index.js",
"author": "Standard Notes",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"main": "./src/index.ts",
"license": "AGPL-3.0-or-later",
"scripts": {
"clean": "rm -fr dist",
"prestart": "yarn clean",
"start": "tsc -p tsconfig.json --watch",
"prebuild": "yarn clean",
"build": "tsc -p tsconfig.json",
"tsc": "tsc -p tsconfig.json",
"lint": "eslint src --ext .ts",
"test": "jest"
},

View File

@ -12,7 +12,7 @@ export const isTheme = (x: ItemInterface): x is SNTheme => x.content_type === Co
export class SNTheme extends SNComponent {
public override area: ComponentArea = ComponentArea.Themes
public override readonly package_info!: ThemePackageInfo
public declare readonly package_info: ThemePackageInfo
isLayerable(): boolean {
return useBoolean(this.package_info && this.package_info.layerable, false)

View File

@ -29,8 +29,6 @@ export * from './Api/Subscription/Invitation'
export * from './Api/Subscription/InvitationStatus'
export * from './Api/Subscription/InviteeIdentifierType'
export * from './Api/Subscription/InviterIdentifierType'
export * from './Api/Workspace/Workspace'
export * from './Api/Workspace/WorkspaceUser'
export * from './Device/Environment'
export * from './Device/Platform'
export * from './Local/KeyParams/RootKeyParamsInterface'

View File

@ -1,13 +1,10 @@
{
"extends": "../../node_modules/@standardnotes/config/src/tsconfig.json",
"extends": "../../UILib.tsconfig.json",
"compilerOptions": {
"skipLibCheck": true,
"rootDir": "./src",
"outDir": "./dist",
"outDir": "./dist"
},
"include": [
"src/**/*"
],
"references": [],
"include": ["src/**/*"],
"exclude": ["**/*.spec.ts"]
}

View File

@ -1,11 +1,6 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires
const base = require('../../node_modules/@standardnotes/config/src/jest.json');
const base = require('../../common.jest.json')
module.exports = {
...base,
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
},
}
};
}

View File

@ -1,19 +1,17 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires
const base = require('../../node_modules/@standardnotes/config/src/jest.json');
const base = require('../../common.jest.json')
module.exports = {
...base,
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
},
transform: {
'^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.json' }],
},
coverageThreshold: {
global: {
branches: 6,
functions: 9,
lines: 13,
statements: 13
}
}
};
statements: 13,
},
},
}

View File

@ -5,20 +5,12 @@
"node": ">=16.0.0 <17.0.0"
},
"description": "Services for Standard Notes SNJS library",
"main": "dist/index.js",
"main": "./src/index.ts",
"author": "Standard Notes",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"private": true,
"license": "AGPL-3.0-or-later",
"scripts": {
"clean": "rm -fr dist",
"prestart": "yarn clean",
"start": "tsc -p tsconfig.json --watch",
"prebuild": "yarn clean",
"build": "tsc -p tsconfig.json",
"tsc": "tsc --project tsconfig.json",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"test": "jest spec --coverage"

View File

@ -1,5 +1,5 @@
import { Uuid, WorkspaceAccessLevel, WorkspaceType } from '@standardnotes/common'
import { Workspace, WorkspaceUser } from '@standardnotes/models'
import { Workspace, WorkspaceUser } from '@standardnotes/api'
export interface WorkspaceClientInterface {
createWorkspace(dto: {

View File

@ -1,7 +1,5 @@
import { WorkspaceApiServiceInterface } from '@standardnotes/api'
import { WorkspaceApiServiceInterface, Workspace, WorkspaceUser } from '@standardnotes/api'
import { Uuid, WorkspaceAccessLevel, WorkspaceType } from '@standardnotes/common'
import { Workspace, WorkspaceUser } from '@standardnotes/models'
import { InternalEventBusInterface } from '../Internal/InternalEventBusInterface'
import { AbstractService } from '../Service/AbstractService'
import { WorkspaceClientInterface } from './WorkspaceClientInterface'

View File

@ -1,13 +1,10 @@
{
"extends": "../../node_modules/@standardnotes/config/src/tsconfig.json",
"extends": "../../UILib.tsconfig.json",
"compilerOptions": {
"skipLibCheck": true,
"rootDir": "./src",
"outDir": "./dist",
"outDir": "./dist"
},
"include": [
"src/**/*"
],
"references": [],
"exclude": ["**/*.spec.ts", "dist", "node_modules"]
"include": ["src/**/*"],
"exclude": ["**/*.spec.ts", "node_modules"]
}

View File

@ -1,11 +1,6 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires
const base = require('../../node_modules/@standardnotes/config/src/jest.json');
const base = require('../../common.jest.json')
module.exports = {
...base,
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
},
}
};
}

View File

@ -1,5 +1,5 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires
const base = require('../../node_modules/@standardnotes/config/src/jest.json');
const base = require('../../common.jest.json')
module.exports = {
...base,
@ -7,12 +7,11 @@ module.exports = {
'@Lib/(.*)': '<rootDir>/lib/$1',
'@Services/(.*)': '<rootDir>/lib/Services/$1',
},
globals: {
'ts-jest': {
tsconfig: '<rootDir>/lib/tsconfig.json',
isolatedModules: true,
babelConfig: 'babel.config.js',
},
transform: {
'^.+\\.tsx?$': [
'ts-jest',
{ tsconfig: './lib/tsconfig.json', isolatedModules: true, babelConfig: 'babel.config.js' },
],
},
clearMocks: true,
collectCoverageFrom: ['lib/**/{!(index),}.ts'],
@ -23,9 +22,6 @@ module.exports = {
roots: ['<rootDir>/lib'],
setupFiles: ['<rootDir>/jest-global.ts'],
setupFilesAfterEnv: [],
transform: {
'^.+\\.(ts|js)?$': 'ts-jest',
},
coverageThreshold: {
global: {
branches: 13,

View File

@ -1,11 +1,6 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires
const base = require('../../node_modules/@standardnotes/config/src/jest.json');
const base = require('../../common.jest.json')
module.exports = {
...base,
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
},
}
};
}

View File

@ -5,20 +5,12 @@
"node": ">=16.0.0 <17.0.0"
},
"description": "UI Services for Standard Notes clients",
"main": "dist/index.js",
"main": "./src/index.ts",
"author": "Standard Notes",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"private": true,
"license": "AGPL-3.0-or-later",
"scripts": {
"clean": "rm -fr dist",
"prestart": "yarn clean",
"start": "tsc -p tsconfig.json --watch",
"prebuild": "yarn clean",
"build": "tsc -p tsconfig.json",
"tsc": "tsc --project tsconfig.json",
"lint": "eslint src --ext .ts",
"test": "jest spec"
},

View File

@ -1,14 +1,11 @@
{
"extends": "../../node_modules/@standardnotes/config/src/tsconfig.json",
"extends": "../../UILib.tsconfig.json",
"compilerOptions": {
"skipLibCheck": true,
"rootDir": "./src",
"outDir": "./dist",
"jsx": "react-jsx",
"jsx": "react-jsx"
},
"include": [
"src/**/*"
],
"references": [],
"exclude": ["**/*.spec.ts", "dist", "node_modules"]
"include": ["src/**/*"],
"exclude": ["**/*.spec.ts", "node_modules"]
}

View File

@ -1,19 +1,14 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires
const base = require('../../node_modules/@standardnotes/config/src/jest.json');
const base = require('../../common.jest.json')
module.exports = {
...base,
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
},
},
coverageThreshold: {
global: {
branches: 4,
functions: 4,
lines: 24,
statements: 25
}
}
};
statements: 25,
},
},
}