@dnv-plant/typescriptpws 1.0.89-alpha.1985647 → 1.0.89-alpha.1985818

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@dnv-plant/typescriptpws",
3
- "version": "1.0.89-alpha.1985647",
3
+ "version": "1.0.89-alpha.1985818",
4
4
  "description": "Integrate Phast models with our versatile APIs for enhanced customization and efficiency.",
5
5
  "main": "index.ts",
6
6
  "scripts": {
@@ -1,29 +0,0 @@
1
- parameters:
2
- - name: testFolder
3
- type: string
4
-
5
- jobs:
6
- - job: "Test_${{ parameters.testFolder }}"
7
- displayName: "tests/${{ parameters.testFolder }}"
8
- pool:
9
- vmImage: ubuntu-latest
10
- steps:
11
- - checkout: self
12
- - task: NodeTool@0
13
- inputs:
14
- versionSpec: "18.x"
15
- displayName: "Install Node.js"
16
-
17
- - script: |
18
- npm install
19
- displayName: "Install dependencies"
20
-
21
- - script: |
22
- npx tsc --noEmit
23
- displayName: "Compile TypeScript"
24
-
25
- - script: |
26
- npm run test -- tests/${{ parameters.testFolder }}
27
- displayName: "Run unit tests"
28
- env:
29
- PWS_ACCESS_TOKEN: $(PWS_ACCESS_TOKEN)
@@ -1,9 +0,0 @@
1
- parameters:
2
- - name: folders
3
- type: object
4
-
5
- jobs:
6
- - ${{ each folder in parameters.folders }}:
7
- - template: azure-test-folder-job.yml
8
- parameters:
9
- testFolder: ${{ folder.folder }}
package/tsconfig.json DELETED
@@ -1,11 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "esnext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
4
- "module": "esnext" /* Specify what module code is generated. */,
5
- "moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */,
6
- "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
7
- "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
8
- "strict": true /* Enable all strict type-checking options. */,
9
- "skipLibCheck": true /* Skip type checking all .d.ts files. */
10
- }
11
- }
package/vitest.config.ts DELETED
@@ -1,9 +0,0 @@
1
- import { defineConfig } from "vitest/config";
2
-
3
- export default defineConfig({
4
- test: {
5
- globals: true,
6
- environment: "node",
7
- testTimeout: 600_000,
8
- },
9
- });