-
Notifications
You must be signed in to change notification settings - Fork 800
Comparing changes
Open a pull request
base repository: stenciljs/core
base: v4.0.4
head repository: stenciljs/core
compare: v4.0.5
- 17 commits
- 9 files changed
- 3 contributors
Commits on Aug 7, 2023
-
chore(deps): update dependency eslint-config-prettier to v8.10.0 (#4656)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for f27bcb3 - Browse repository at this point
Copy the full SHA f27bcb3View commit details -
chore(deps): update dependency @types/node to v20.4.7 (#4654)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for e414813 - Browse repository at this point
Copy the full SHA e414813View commit details -
chore(deps): update dependency prettier to v3.0.1 (#4655)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for ea563d9 - Browse repository at this point
Copy the full SHA ea563d9View commit details -
chore(deps): update typescript-eslint to v6.2.1 (#4657)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for cff7622 - Browse repository at this point
Copy the full SHA cff7622View commit details -
chore(deps): update dependency puppeteer to v21 (#4658)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 4ce38c5 - Browse repository at this point
Copy the full SHA 4ce38c5View commit details
Commits on Aug 10, 2023
-
chore(deps): update dependency @types/eslint to v8.44.2 (#4668)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 0e9ef34 - Browse repository at this point
Copy the full SHA 0e9ef34View commit details -
chore(deps): update dependency @types/node to v20.4.8 (#4669)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 90e85da - Browse repository at this point
Copy the full SHA 90e85daView commit details -
chore(deps): update dependency eslint-config-prettier to v9 (#4670)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for fce6597 - Browse repository at this point
Copy the full SHA fce6597View commit details
Commits on Aug 14, 2023
-
chore(deps): update typescript-eslint to v6.3.0 (#4680)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 0d4c73f - Browse repository at this point
Copy the full SHA 0d4c73fView commit details -
chore(deps): update dependency puppeteer to v21.0.2 (#4679)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for bff7229 - Browse repository at this point
Copy the full SHA bff7229View commit details -
chore(deps): update dependency @types/node to v20.4.9 (#4677)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 1ddffbd - Browse repository at this point
Copy the full SHA 1ddffbdView commit details -
chore(deps): update dependency eslint-plugin-jsdoc to v46.4.6 (#4678)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for a62498c - Browse repository at this point
Copy the full SHA a62498cView commit details -
fix(compiler): match tsconfig include paths properly (#4676)
this commit fixes a bug where a user was unable to use relative paths in the `include` property of their `tsconfig.json` file if `srcDir` was also specified. previously, when `tsconfig.json#include` contained a relative path: ``` "include": [ "./app/javascript" ], ``` and `tsconfig.json#srcDir` included the non-relative version of that path: ``` srcDir: 'app/javascript', ``` then you would receive a very confusing error: ``` [ WARN ] tsconfig.json "include" required In order for TypeScript to improve watch performance, it's recommended the "tsconfig.json" file should have the "include" property, with at least the app's "app/javascript" directory listed. For example: "include": ["app/javascript"] ``` closes #4667
Configuration menu - View commit details
-
Copy full SHA for 664ecb7 - Browse repository at this point
Copy the full SHA 664ecb7View commit details -
chore(repo): split internal and user-facing jest config (#4666)
this commit separates stencil's internal testing jest configuration (used when running unit tests on the stencil project itself), and the jest configuration used by stencil projects (when a stencil user runs `npm t` in their project). with this commit, we remove the inheritance on the jest configuration that we bundle with stencil for end users. in order to ensure that stencil's internal tests continue to function, the internal jest config has been updated to have near parity with the external one. the intent of this commit is _not_ to optimize the jest config, but rather separate the two so that we can begin to bring support for newer versions of jest to end users without dragging out the process (i.e. upgrading ourselves)
Configuration menu - View commit details
-
Copy full SHA for a81c0d5 - Browse repository at this point
Copy the full SHA a81c0d5View commit details -
chore(compiler): remove some unused code (#4665)
This deletes the code in `src/compiler/sys/worker/web-worker-*.ts`. Both of the files in that directory which appeared to implement some sort of web worker-based compilation task runner were unused.
Configuration menu - View commit details
-
Copy full SHA for aac37fd - Browse repository at this point
Copy the full SHA aac37fdView commit details -
chore(declarations): remove unused types (#4673)
this commit removes several types that are unused in the stencil codebase. these have previously gone undetected due to their being exported by `src/declarations/index.ts`. these types are not used within the stencil codebse. _however_ it is possible that a consumer is reaching into our internal type declarations to use these types. those that are in this file are assumed to be 'private' (and therefore volatile). should a bug report come in regarding one of these types, the recommeneded recourse is that the team investigate/determine on a per-issue basis whether the type should be restored in `stencil-public.ts` or re-added to this file and deprecated (and removed in v5)
Configuration menu - View commit details
-
Copy full SHA for c0085e8 - Browse repository at this point
Copy the full SHA c0085e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for b217b96 - Browse repository at this point
Copy the full SHA b217b96View commit details
There are no files selected for viewing