Skip to content

Commit b4b8aa8

Browse files
authored
fix: correct resolving tsconfig filepath (#297)
1 parent 324ef0c commit b4b8aa8

File tree

21 files changed

+194
-17124
lines changed

21 files changed

+194
-17124
lines changed

.changeset/tidy-rice-exist.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@pkgr/webpack": patch
3+
---
4+
5+
fix: correct resolving tsconfig filepath

.changeset/wise-seas-walk.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
"@pkgr/es-modules": patch
3+
"@pkgr/rollup": patch
4+
"@pkgr/umd-globals": patch
5+
"@pkgr/webpack-angular": patch
6+
"@pkgr/webpack-mdx": patch
7+
"@pkgr/webpack-react": patch
8+
"@pkgr/webpack-svelte": patch
9+
"@pkgr/webpack-vue": patch
10+
"@pkgr/webpack": patch
11+
---
12+
13+
chore: bump deps

.eslintrc

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"root": true,
23
"extends": "@1stg",
34
"rules": {
45
"unicorn/prefer-top-level-await": "off"

.github/workflows/ci.yml

-7
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,3 @@ jobs:
3939

4040
- name: Codecov
4141
uses: codecov/codecov-action@v3
42-
43-
- name: Codacy Coverage
44-
run: |
45-
bash <(curl -Ls https://coverage.codacy.com/get.sh)
46-
env:
47-
CODACY_ACCOUNT_TOKEN: ${{ secrets.CODACY_ACCOUNT_TOKEN }}
48-
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}

.github/workflows/vercel.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
vercel-args: ${{ steps.branch.outputs.args }}
2626
vercel-token: ${{ secrets.VERCEL_TOKEN }}
27-
vercel-org-id: ${{ secrets.VERCEL_ORG_ID}}
28-
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID}}
27+
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
28+
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }}
2929
github-comment: ${{ steps.branch.outputs.comment != 'false' }}
3030
github-token: ${{ secrets.GITHUB_TOKEN }}

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 JounQin/RxTS
3+
Copyright (c) 2019 JounQin/UnTS
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
# @unts/pkgr
22

33
[![GitHub Actions](https://github.com/un-ts/pkgr/workflows/CI/badge.svg)](https://github.com/un-ts/pkgr/actions/workflows/ci.yml)
4-
[![Codacy Grade](https://img.shields.io/codacy/grade/f0d7917efb7d4ea7afb46fee4de37f5d)](https://www.codacy.com/gh/un-ts/pkgr)
4+
[![Language grade: JavaScript](https://img.shields.io/lgtm/grade/javascript/g/un-ts/pkgr.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/un-ts/pkgr/context:javascript)
55
[![Codecov](https://img.shields.io/codecov/c/gh/un-ts/pkgr)](https://codecov.io/gh/un-ts/pkgr)
66
[![type-coverage](https://img.shields.io/badge/dynamic/json.svg?label=type-coverage&prefix=%E2%89%A5&suffix=%&query=$.typeCoverage.atLeast&uri=https%3A%2F%2Fraw.githubusercontent.com%2Fun-ts%2Fpkgr%2Fmaster%2Fpackage.json)](https://github.com/plantain-00/type-coverage)
77
[![GitHub release](https://img.shields.io/github/release/un-ts/pkgr)](https://github.com/un-ts/pkgr/releases)
8-
[![David Dev](https://img.shields.io/david/dev/un-ts/pkgr.svg)](https://david-dm.org/un-ts/pkgr?type=dev)
98

109
[![Conventional Commits](https://img.shields.io/badge/conventional%20commits-1.0.0-yellow.svg)](https://conventionalcommits.org)
11-
[![Renovate enabled](https://img.shields.io/badge/renovate-enabled-brightgreen.svg)](https://renovatebot.com/)
10+
[![Renovate enabled](https://img.shields.io/badge/renovate-enabled-brightgreen.svg)](https://renovatebot.com)
1211
[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
1312
[![Code Style: Prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
1413
[![changesets](https://img.shields.io/badge/maintained%20with-changesets-176de3.svg)](https://github.com/atlassian/changesets)

package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@
4040
"w:dev": "tsx packages/webpack/src/cli"
4141
},
4242
"devDependencies": {
43-
"@1stg/app-config": "^5.2.5",
44-
"@angular/common": "^14.0.4",
45-
"@angular/compiler": "^14.0.4",
46-
"@angular/compiler-cli": "^14.0.4",
47-
"@angular/core": "^14.0.4",
48-
"@angular/platform-browser": "^14.0.4",
49-
"@angular/platform-browser-dynamic": "^14.0.4",
43+
"@1stg/app-config": "^5.2.6",
44+
"@angular/common": "^14.0.5",
45+
"@angular/compiler": "^14.0.5",
46+
"@angular/compiler-cli": "^14.0.5",
47+
"@angular/core": "^14.0.5",
48+
"@angular/platform-browser": "^14.0.5",
49+
"@angular/platform-browser-dynamic": "^14.0.5",
5050
"@babel/types": "^7.18.7",
5151
"@changesets/changelog-github": "^0.4.5",
5252
"@changesets/cli": "^2.23.0",
@@ -59,18 +59,18 @@
5959
"@types/copy-webpack-plugin": "^10.1.0",
6060
"@types/cross-spawn": "^6.0.2",
6161
"@types/debug": "^4.1.7",
62-
"@types/friendly-errors-webpack-plugin": "^0.1.4",
6362
"@types/imagemin": "^8.0.0",
6463
"@types/is-glob": "^4.0.2",
6564
"@types/jest": "^28.1.4",
6665
"@types/lodash-es": "^4.17.6",
6766
"@types/micromatch": "^4.0.2",
6867
"@types/mini-css-extract-plugin": "^2.5.1",
69-
"@types/node": "^18.0.1",
68+
"@types/node": "^18.0.3",
7069
"@types/postcss-load-config": "^3.0.1",
7170
"@types/prettier": "^2.6.3",
72-
"@types/react": "^18.0.14",
71+
"@types/react": "^18.0.15",
7372
"@types/react-dom": "^18.0.6",
73+
"@types/soda__friendly-errors-webpack-plugin": "npm:@types/friendly-errors-webpack-plugin@^0.1.4",
7474
"@types/webpack-dev-server": "^4.7.2",
7575
"@types/webpack-env": "^1.17.0",
7676
"@types/workbox-webpack-plugin": "^5.1.8",

packages/es-modules/README.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@
33
[![npm](https://img.shields.io/npm/v/@pkgr/es-modules.svg)](https://www.npmjs.com/package/@pkgr/es-modules)
44
![npm bundle size](https://img.shields.io/bundlephobia/min/@pkgr/es-modules)
55
![npm bundle size](https://img.shields.io/bundlephobia/minzip/@pkgr/es-modules)
6-
7-
[![David Peer](https://img.shields.io/david/peer/un-ts/pkgr.svg?path=packages/es-modules)](https://david-dm.org/un-ts/pkgr?path=packages/es-modules&type=peer)
8-
[![David](https://img.shields.io/david/un-ts/pkgr.svg?path=packages/es-modules)](https://david-dm.org/un-ts/pkgr?path=packages/es-modules)
9-
[![David Dev](https://img.shields.io/david/dev/un-ts/pkgr.svg?path=packages/es-modules)](https://david-dm.org/un-ts/pkgr?path=packages/es-modules&type=dev)
6+
[![Renovate enabled](https://img.shields.io/badge/renovate-enabled-brightgreen.svg)](https://renovatebot.com)
107

118
> Union collections of es modules mappings for pkgs without or with incorrect `module` field.
129

packages/rollup/package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,16 @@
4646
"r": "lib/cli.js"
4747
},
4848
"files": [
49-
"lib"
49+
"lib",
50+
"shim.d.ts"
5051
],
5152
"dependencies": {
5253
"@babel/core": "^7.18.6",
5354
"@babel/plugin-proposal-decorators": "^7.18.6",
5455
"@babel/preset-env": "^7.18.6",
5556
"@babel/preset-typescript": "^7.18.6",
56-
"@pkgr/es-modules": "^0.6.0",
57-
"@pkgr/umd-globals": "^0.8.0",
57+
"@pkgr/es-modules": "^0.6.1",
58+
"@pkgr/umd-globals": "^0.8.1",
5859
"@pkgr/utils": "^2.3.0",
5960
"@rollup/plugin-alias": "^3.1.9",
6061
"@rollup/plugin-babel": "^5.3.1",

0 commit comments

Comments
 (0)