monorepolint 0.5.0-alpha.10 → 0.5.0-alpha.106

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,25 +1,44 @@
1
1
  {
2
2
  "name": "monorepolint",
3
- "version": "0.5.0-alpha.10+b584a18",
3
+ "version": "0.5.0-alpha.106+c717193",
4
4
  "license": "MIT",
5
- "scripts": {
6
- "clean": "rm -rf build lib node_modules *.tgz",
7
- "compile:typescript": "../../node_modules/.bin/tsc",
8
- "jest:watch": "../../node_modules/.bin/jest --config ../../jest.config.js --watch",
9
- "jest": "../../node_modules/.bin/jest --config ../../jest.config.js",
10
- "lint:typescript": "../../node_modules/.bin/tslint --config ../../tslint.json --project .",
11
- "lint": "../../node_modules/.bin/tslint --config ../../tslint.json --project .",
12
- "test:watch": "../../node_modules/.bin/jest --colors --passWithNoTests --watch",
13
- "test": "../../node_modules/.bin/jest --colors --passWithNoTests"
5
+ "exports": {
6
+ ".": {
7
+ "types": "./build/types/index.d.ts",
8
+ "import": "./build/js/index.js"
9
+ },
10
+ "./*": {
11
+ "types": "./build/types/public/*.d.ts",
12
+ "import": "./build/js/public/*.js"
13
+ }
14
14
  },
15
+ "engines": {
16
+ "node": ">=16"
17
+ },
18
+ "scripts": {},
15
19
  "dependencies": {
16
- "@monorepolint/cli": "^0.5.0-alpha.10+b584a18",
17
- "@monorepolint/core": "^0.5.0-alpha.10+b584a18",
18
- "@monorepolint/rules": "^0.5.0-alpha.10+b584a18",
19
- "@monorepolint/utils": "^0.5.0-alpha.10+b584a18"
20
+ "@monorepolint/cli": "^0.5.0-alpha.106+c717193",
21
+ "@monorepolint/config": "^0.5.0-alpha.106+c717193",
22
+ "@monorepolint/core": "^0.5.0-alpha.106+c717193",
23
+ "@monorepolint/internal-mrl-config": "^0.5.0-alpha.106+c717193",
24
+ "@monorepolint/rules": "^0.5.0-alpha.106+c717193",
25
+ "@monorepolint/utils": "^0.5.0-alpha.106+c717193"
26
+ },
27
+ "devDependencies": {
28
+ "@jest/globals": "^29.3.1",
29
+ "@types/jest": "^29.2.4",
30
+ "@typescript-eslint/eslint-plugin": "^5.45.1",
31
+ "@typescript-eslint/parser": "^5.45.1",
32
+ "eslint": "^8.29.0",
33
+ "jest": "^29.3.1",
34
+ "prettier": "^2.8.3",
35
+ "ts-jest": "^29.0.5",
36
+ "tslib": "^2.5.0",
37
+ "tsup": "^6.5.0",
38
+ "typescript": "^4.9.5"
20
39
  },
21
40
  "publishConfig": {
22
41
  "access": "public"
23
42
  },
24
- "gitHead": "b584a18e553330f84b64afd3a658342cab6c7234"
43
+ "gitHead": "c71719369db87ef0173ef8bd2293ce20cf8f9722"
25
44
  }
package/tsconfig.json CHANGED
@@ -1,16 +1,27 @@
1
1
  {
2
2
  "extends": "../../tsconfig.base.json",
3
3
  "compilerOptions": {
4
- "outDir": "./lib",
5
- "rootDir": "./src"
4
+ "outDir": "./build/js",
5
+ "rootDir": "./src",
6
+ "declarationDir": "./build/types",
7
+ "tsBuildInfoFile": "./build/tsconfig.tsbuildinfo"
6
8
  },
9
+ "include": [
10
+ "src"
11
+ ],
7
12
  "references": [
8
13
  {
9
14
  "path": "../cli"
10
15
  },
16
+ {
17
+ "path": "../config"
18
+ },
11
19
  {
12
20
  "path": "../core"
13
21
  },
22
+ {
23
+ "path": "../internal-mrl-config"
24
+ },
14
25
  {
15
26
  "path": "../rules"
16
27
  },
@@ -1,31 +0,0 @@
1
- {
2
- "program": {
3
- "fileInfos": {},
4
- "options": {
5
- "target": 5,
6
- "module": 1,
7
- "lib": [
8
- "lib.es2018.d.ts"
9
- ],
10
- "declaration": true,
11
- "declarationMap": true,
12
- "sourceMap": true,
13
- "composite": true,
14
- "importHelpers": true,
15
- "strict": true,
16
- "noUnusedLocals": true,
17
- "noUnusedParameters": true,
18
- "noImplicitReturns": true,
19
- "noFallthroughCasesInSwitch": true,
20
- "allowSyntheticDefaultImports": true,
21
- "esModuleInterop": true,
22
- "outDir": "./lib",
23
- "rootDir": "./src",
24
- "configFilePath": "./tsconfig.json"
25
- },
26
- "referencedMap": {},
27
- "exportedModulesMap": {},
28
- "semanticDiagnosticsPerFile": []
29
- },
30
- "version": "3.6.2"
31
- }
File without changes