declapract-typescript-ehmpathy 0.17.1 → 0.17.2

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "devDependencies": {
3
- "simple-artifact-builder": "@declapract{check.minVersion('1.1.2')}"
3
+ "simple-artifact-builder": "@declapract{check.minVersion('1.1.6')}"
4
4
  },
5
5
  "scripts": {
6
6
  "build:artifact": "npx simple-artifact-builder zip"
@@ -22,6 +22,7 @@ jobs:
22
22
  uses: actions/setup-node@v2
23
23
  with:
24
24
  node-version: ${{ steps.nvmrc.outputs.NODE_VERSION }}
25
+ registry-url: 'https://registry.npmjs.org'
25
26
  cache: 'npm'
26
27
 
27
28
  - name: install
@@ -2,12 +2,11 @@ import type { Config } from 'jest';
2
2
 
3
3
  // https://jestjs.io/docs/configuration
4
4
  const config: Config = {
5
- preset: 'ts-jest', // https://kulshekhar.github.io/ts-jest/docs/getting-started/presets
6
5
  verbose: true,
7
6
  testEnvironment: 'node',
8
7
  moduleFileExtensions: ['js', 'ts'],
9
8
  transform: {
10
- '^.+\\.[tj]sx?$': 'ts-jest',
9
+ '^.+\\.[tj]sx?$': 'ts-jest', // https://kulshekhar.github.io/ts-jest/docs/getting-started/presets
11
10
  },
12
11
  testMatch: ['**/*.acceptance.test.ts'],
13
12
  setupFiles: ['core-js'],
@@ -2,12 +2,11 @@ import type { Config } from 'jest';
2
2
 
3
3
  // https://jestjs.io/docs/configuration
4
4
  const config: Config = {
5
- preset: 'ts-jest', // https://kulshekhar.github.io/ts-jest/docs/getting-started/presets
6
5
  verbose: true,
7
6
  testEnvironment: 'node',
8
7
  moduleFileExtensions: ['js', 'ts'],
9
8
  transform: {
10
- '^.+\\.[tj]sx?$': 'ts-jest',
9
+ '^.+\\.[tj]sx?$': 'ts-jest', // https://kulshekhar.github.io/ts-jest/docs/getting-started/presets
11
10
  },
12
11
  testMatch: ['**/*.integration.test.ts'],
13
12
  setupFiles: ['core-js'],
@@ -7,10 +7,10 @@
7
7
  "simple-lambda-testing-methods": "@declapract{check.minVersion('0.2.1')}"
8
8
  },
9
9
  "scripts": {
10
- "test:unit": "jest -c ./jest.unit.config.js --forceExit --coverage --verbose --passWithNoTests",
11
- "test:integration": "jest -c ./jest.integration.config.js --forceExit --coverage --verbose --passWithNoTests",
12
- "test:acceptance:locally": "npm run build && LOCALLY=true jest -c ./jest.acceptance.config.js --forceExit --verbose --runInBand",
10
+ "test:unit": "jest -c ./jest.unit.config.ts --forceExit --coverage --verbose --passWithNoTests",
11
+ "test:integration": "jest -c ./jest.integration.config.ts --forceExit --coverage --verbose --passWithNoTests",
12
+ "test:acceptance:locally": "npm run build && LOCALLY=true jest -c ./jest.acceptance.config.ts --forceExit --verbose --runInBand",
13
13
  "test": "npm run test:commits && npm run test:types && npm run test:format && npm run test:lint && npm run test:unit && npm run test:integration && npm run test:acceptance:locally",
14
- "test:acceptance": "npm run build && jest -c ./jest.acceptance.config.js --forceExit --verbose --runInBand"
14
+ "test:acceptance": "npm run build && jest -c ./jest.acceptance.config.ts --forceExit --verbose --runInBand"
15
15
  }
16
16
  }
@@ -3,6 +3,7 @@
3
3
  "compilerOptions": {
4
4
  "importsNotUsedAsValues": "remove",
5
5
  "noPropertyAccessFromIndexSignature": false,
6
+ "noImplicitOverride": false,
6
7
  "resolveJsonModule": true,
7
8
  "sourceMap": true,
8
9
  "outDir": "dist",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "declapract-typescript-ehmpathy",
3
- "version": "0.17.1",
3
+ "version": "0.17.2",
4
4
  "description": "declapract best practices declarations for typescript",
5
5
  "main": "src/index.js",
6
6
  "repository": "ehmpathy/declapract-typescript-ehmpathy",