diff --git a/.github/workflows/cd-teardown.yml b/.github/workflows/cd-teardown.yml index 46318a41..76d7a2d8 100644 --- a/.github/workflows/cd-teardown.yml +++ b/.github/workflows/cd-teardown.yml @@ -12,7 +12,7 @@ jobs: - name: Prepare for unpublication from npm uses: actions/setup-node@v3 with: - node-version: '16.x' + node-version: '18.x' registry-url: 'https://registry.npmjs.org' - name: Determine npm tag # Remove non-alphanumeric characters @@ -22,4 +22,4 @@ jobs: run: npm dist-tag rm @inrupt/solid-common-vocab $TAG_SLUG env: NODE_AUTH_TOKEN: ${{ secrets.INRUPT_NPM_TOKEN }} - - run: echo "Package tag \`$TAG_SLUG\` unpublished." \ No newline at end of file + - run: echo "Package tag \`$TAG_SLUG\` unpublished." diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index f4644ff8..8445f2c9 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -19,7 +19,7 @@ jobs: - name: Prepare for publication to npm uses: actions/setup-node@v3 with: - node-version: '16.x' + node-version: '18.x' registry-url: 'https://registry.npmjs.org' scope: '@inrupt' - name: Determine npm tag @@ -40,4 +40,4 @@ jobs: - run: | echo "Package published. To install, run:" echo "" - echo " npm install @inrupt/solid-common-vocab@$TAG_SLUG" \ No newline at end of file + echo " npm install @inrupt/solid-common-vocab@$TAG_SLUG" diff --git a/tsconfig.json b/tsconfig.json index 3f71856e..94eb1a30 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -36,7 +36,7 @@ // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ /* Module Resolution Options */ - // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ + "moduleResolution": "bundler", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */