-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update dependency @preconstruct/cli to ^2.8.10 #38
base: master
Are you sure you want to change the base?
Conversation
|
731f2de
to
bf42e32
Compare
bf42e32
to
658c4fc
Compare
658c4fc
to
c3ecead
Compare
f9d884c
to
7217d58
Compare
7217d58
to
81edddf
Compare
81edddf
to
d3ca7ae
Compare
d3ca7ae
to
9dad078
Compare
9dad078
to
b411c0f
Compare
b411c0f
to
2aa9f30
Compare
2aa9f30
to
7905058
Compare
7905058
to
9e7f6fc
Compare
9e7f6fc
to
26457d0
Compare
This PR contains the following updates:
^2.1.5
->^2.8.10
Release Notes
preconstruct/preconstruct (@preconstruct/cli)
v2.8.10
Compare Source
Patch Changes
7c81de7
Thanks @emmatown! - Fixpreconstruct watch
when usinguse client
/use server
directivesv2.8.9
Compare Source
Patch Changes
79b6d1c
Thanks @emmatown! - Fix outputting.d.ts
files with extension-less imports that are invalid when using the experimental flagtypeModule
withmoduleResolution: "nodenext"
andtype: "module"
indev
andbuild
v2.8.8
Compare Source
Patch Changes
#599
4b920e7
Thanks @VanTanev! - Remove unnecessary dependency onmeow
CLI parsing library, as @preconstruct/cli only takes a single positional argument denoting a preconstruct command.#602
b62bd19
Thanks @emmatown! - Fix referencing a type from another package in the same preconstruct build that has a.d.ts
file at the entrypointv2.8.7
Compare Source
Patch Changes
022bbc4
Thanks @emmatown! - FixError when using sourcemap for reporting an error: Can't resolve original location of error
error caused by changes to@babel/helpers
in newer versions of Babelv2.8.6
Compare Source
Patch Changes
9f45824
Thanks @emmatown! - AddcheckTypeDependencies
experimental flagv2.8.5
Compare Source
Patch Changes
c05b2a9
Thanks @emmatown! - Fix generating TypeScript declarations where imports to JSON files are emitted in the.d.ts
filesv2.8.4
Compare Source
Patch Changes
fa66c34
Thanks @emmatown! - Fixpreconstruct dev
withexports: { importConditionDefaultExport: "default" }
with a.d.ts
filev2.8.3
Compare Source
Patch Changes
#586
d8e9cea
Thanks @emmatown! - AddtypeModule
experimental flag#586
d8e9cea
Thanks @emmatown! - AdddistInRoot
experimental flag#588
1a2ee56
Thanks @emmatown! - Use inline source maps for declaration file redirectsv2.8.2
Compare Source
Patch Changes
#584
d79abf2
Thanks @emmatown! - Fix.d.cts
/.d.mts
files breaking declaration generation#570
edb4320
Thanks @Andarist! - Replace the dependencyis-ci
withci-info
.v2.8.1
Compare Source
Patch Changes
d4006c8
Thanks @Andarist! - Fixed.mjs
proxies generation with___experimentalFlags_WILL_CHANGE_IN_PATCH.importsConditions
andexports.importConditionDefaultExport: 'default'
v2.8.0
Compare Source
Minor Changes
#565
484c6a7
Thanks @Andarist! -package.json#exports
have been added to limit what (and how) code might be imported from the package.#566
9d4f0dc
Thanks @emmatown! - Preconstruct no longer emits unnecessary.d.ts
files that aren't referenced by an entrypointPatch Changes
58df49f
Thanks @emmatown! - Fix require hook skipping compiling files when just an entrypoint is loaded#559
a58f021
Thanks @emmatown! - Extend import path normalisation in generated declaration files to manually written declaration files as wellv2.7.0
Compare Source
Minor Changes
908c43e
Thanks @Andarist! - Always emit relative paths used in generated TS declaration files with resolved extensions of their runtime equivalents. This currently requires one of the 2 experimental flags:importsConditions
oronlyEmitUsedTypeScriptDeclarations
Patch Changes
1147fee
Thanks @Andarist! - Fix types likeimport('#foo').Foo<import('#bar').Bar>
not replacing the import to#bar
in generated declarations under theimportsConditions
experimental flagv2.6.4
Compare Source
Patch Changes
e78203b
Thanks @emmatown! - Fix.d.ts
files underimportsConditions
experimental flag incorrectly pointing to the source filesv2.6.3
Compare Source
Patch Changes
#551
ff61fbf
Thanks @emmatown! - AddimportsConditions
experimental flag#550
41a8a4f
Thanks @emmatown! - AddonlyEmitUsedTypeScriptDeclarations
experimental flag#548
db69133
Thanks @Andarist! - Load Babel lazily in the main thread to speed up init time as it isn't needed for all code paths.v2.6.2
Compare Source
Patch Changes
c28b10a
Thanks @emmatown! -importConditionDefaultExport
is now re-enabled and works with"moduleResolution": "bundler"
v2.6.1
Compare Source
Patch Changes
5380890
Thanks @emmatown! - Disable specifyingimportConditionDefaultExport
because it doesn't work correctly in"moduleResoltion": "bundler"
,@preconstruct/[email protected]
is npm deprecated,importConditionDefaultExport
will come back in the future.v2.6.0
Compare Source
Minor Changes
#543
93106e3
Thanks @Andarist! - Added a newexports.importConditionDefaultExport
config option. It allows you to generateimport
exports condition (and corresponding files) to fix the export shape incompatibility between node and bundlers.With this option set to
"default"
this will always resolve to what has been written as a default export:233ee25
Thanks @emmatown! - Top-level'use server'
directives are now also preserved like'use client'
directives.Patch Changes
4e72d99
Thanks @emmatown! - Fix'use client'
directives with comments preceding them not being detectedv2.5.0
Compare Source
Minor Changes
261140b
Thanks @emmatown! - Self-referencing a package with its name is now allowed. They are emitted as written (not resolved to a particular bundle ahead of time).Patch Changes
#538
d2cd411
Thanks @emmatown! - Update rollup and magic-string#541
2fd4ed2
Thanks @emmatown! - Fix issues with'use client'
directive module preservation#536
3645eed
Thanks @jordanoverbye! - Upgraded dependencyterser
v2.4.4
Compare Source
Patch Changes
1f83965
Thanks @emmatown! - Fixpreconstruct dev
throwing a syntax error when an entrypoint has a.d.ts
file with a default export.v2.4.3
Compare Source
Patch Changes
7f6618a
Thanks @emmatown! - Remove comment forpreconstruct dev
TypeScript re-export filev2.4.2
Compare Source
Patch Changes
2a3722c
Thanks @emmatown! - Generate declaration maps for the.d.ts
files that only re-export the actual entrypoints so that go to definition goes directly to the actual entrypoints.v2.4.1
Compare Source
Patch Changes
457b707
Thanks @emmatown! - Fix having a"use client"
in a non-entrypoint TypeScript file breaking the buildv2.4.0
Compare Source
Minor Changes
d363c88
Thanks @emmatown! - Modules with"use client"
directives are now built as their own chunk with the"use client"
directive preserved.v2.3.0
Compare Source
Minor Changes
36e3d51
Thanks @emmatown! - Support for the exports field has been stabilised. If you were using the experimental flag, you should remove it.Patch Changes
09784cd
Thanks @emmatown! - RemovedtypeScriptProxyFileWithImportEqualsRequireAndExportEquals
experimental flag.v2.2.2
Compare Source
Patch Changes
#495
4e90c2b
Thanks @mycroes! - TheoutDir
anddeclarationDir
tsconfig options are now ignored. These options are unnecessary for Preconstruct since it controls where the.d.ts
files are emitted to. This fixes confusing errors if you had these options set.eaa2fcc
Thanks @mitchellhamilton! - Improved error when importing something with an extension that can't be importedv2.2.1
Compare Source
Patch Changes
#476
3930466
Thanks @mitchellhamilton! - Usingnode:
to import Node builtins no longer triggers a "package is not specified in dependencies or peerDependencies" error#481
76f0163
Thanks @efoken! - Updated@rollup/plugin-node-resolve
to^11.2.1
in order to make direct imports resolveable, e.g. packages that useexports
in their package.jsonv2.2.0
Compare Source
Minor Changes
a05414d
Thanks @mitchellhamilton! -.d.ts
files can now be written next to.js
entrypoints and they will be appropriately written to the dist.v2.1.8
Compare Source
Patch Changes
014038b
Thanks @nicksrandall! - Added experimentalexports
flag. See the docs at theexports
section of https://preconstruct.tools/configuration.v2.1.7
Compare Source
Patch Changes
3f202fd
Thanks @mitchellhamilton! - Imports to@babel/runtime/helpers/esm/*
will now be rewritten to@babel/runtime/helpers/*
for CommonJS outputs. This fixes the CommonJS output in case you have["@​babel/plugin-transform-runtime", { "useESModules": true }]
) in your Babel config.v2.1.6
Compare Source
Patch Changes
#461
97e7ca0
Thanks @simonswiss! - Fixed grammar in CLI info message about errorsf6f2e60
Thanks @mitchellhamilton! - Fixed bigint usage causing an errorConfiguration
📅 Schedule: Branch creation - "before 7am on Tuesday,before 7am on Wednesday" in timezone Australia/Melbourne, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.