about summary refs log tree commit diff
path: root/src/test/run-make/emit-shared-files
AgeCommit message (Collapse)AuthorLines
2021-04-05change SourceSerifPro to SourceSerif4 in emit-shared-files testTrevor Spiteri-3/+3
2021-03-31Fix `--external-css` to be invocation-specific and note main.js should be ↵Joshua Nelson-7/+17
invocation specific
2021-03-31Rename CrateSpecific -> InvocationSpecificJoshua Nelson-11/+11
2021-03-31Enforce that Toolchain files are static and Crate files are dynamicJoshua Nelson-1/+5
This also changes custom themes from Toolchain to Crate files.
2021-03-25Add unstable option to only emit shared/crate-specific filesJoshua Nelson-0/+33
The intended use case is for docs.rs, which can now copy exactly the files it cares about, rather than having to guess based on whether they have a resource suffix or not. In particular, some files have a resource suffix but cannot be shared between crates: https://github.com/rust-lang/docs.rs/pull/1312#issuecomment-798783688 The end goal is to fix https://github.com/rust-lang/docs.rs/issues/1327 by reverting https://github.com/rust-lang/docs.rs/pull/1324. This obsoletes `--print=unversioned-files`, which I plan to remove as soon as docs.rs stops using it.