Skip to content

Commit

Permalink
chore(map): fix import map
Browse files Browse the repository at this point in the history
- �fixed importMap function to display all paths correctly
  • Loading branch information
imjuni committed Mar 13, 2024
1 parent 5a67766 commit e68c7c0
Show file tree
Hide file tree
Showing 23 changed files with 740 additions and 438 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: publish

on:
push:
tags:
- 'v*'

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm i
- run: pnpm run build
- run: pnpm test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: PNPM Publish
run: pnpm run pub:prod
env:
RELEASE_MODE: true
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@
"@rollup/plugin-node-resolve": "^15.2.3",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitest/coverage-v8": "^1.3.1",
"cross-env": "^7.0.3",
"ctix": "^2.4.0",
Expand All @@ -86,7 +86,7 @@
"prettier-plugin-organize-imports": "^3.2.4",
"read-pkg": "^5.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.12.1",
"rollup": "^4.13.0",
"rollup-plugin-dts": "^6.1.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
Expand All @@ -95,8 +95,8 @@
"vitest": "^1.3.1"
},
"dependencies": {
"ts-morph": "^21.0.1",
"type-fest": "^4.11.1",
"ts-morph": "^22.0.0",
"type-fest": "^4.12.0",
"typescript": "^5.4.2"
},
"overrides": {
Expand Down

0 comments on commit e68c7c0

Please sign in to comment.