Skip to content

Commit

Permalink
added 'moduleResoluton', updated CI Node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pmcb55 committed Oct 1, 2023
1 parent fb3b590 commit 5afb84e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd-teardown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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."
- run: echo "Package tag \`$TAG_SLUG\` unpublished."
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -40,4 +40,4 @@ jobs:
- run: |
echo "Package published. To install, run:"
echo ""
echo " npm install @inrupt/solid-common-vocab@$TAG_SLUG"
echo " npm install @inrupt/solid-common-vocab@$TAG_SLUG"
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit 5afb84e

Please sign in to comment.