@compiiile/compiiile 2.2.3 → 2.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,7 +23,8 @@
23
23
  const deck = document.querySelector(".deck")
24
24
 
25
25
  const Reveal = (await import("reveal.js")).default(deck, {
26
- embedded: true
26
+ embedded: true,
27
+ pdfMaxPagesPerSlide: 1
27
28
  })
28
29
 
29
30
  await Reveal.initialize({
@@ -22,7 +22,7 @@
22
22
  --highlight-color: #9985fe;
23
23
  --link-color: var(--highlight-color);
24
24
  --blockquote-background-color: rgba(153, 133, 254, 0.1);
25
- --blockquote-border-color: var(--highlight-color);
25
+ --blockquote-border-color: hsl(247, 26%, 30%);
26
26
  --table-border-color: var(--separator-color);
27
27
  --table-odd-lines-background-color: var(--code-background-color);
28
28
  --table-even-lines-background-color: #262a33;
package/README.md CHANGED
@@ -244,6 +244,10 @@ import Test from "./Test.vue"
244
244
 
245
245
  You should use [Astro's client directives](https://docs.astro.build/en/reference/directives-reference/#client-directives) to load your component's script.
246
246
 
247
+ ## Common issues
248
+
249
+ - Make sure that the absolute path to the folder where you are running Compiiile doesn't contain any special character as it could prevent the project initialization.
250
+
247
251
  ## Special thanks
248
252
 
249
253
  - [Astro](https://github.com/withastro/astro) for enabling us developers to make lightweight websites
package/bin/config.js CHANGED
@@ -83,7 +83,7 @@ const astroConfig = {
83
83
  srcDir: new URL("../.compiiile/src", import.meta.url).pathname,
84
84
  outDir: path.join(source, argv.dest || ".compiiile/dist"),
85
85
  ...(argv.logo ? { publicDir } : {}),
86
- integrations: [vue({ appEntrypoint: "/src/app.js" }), mdx(), ...(configFromFile.integrations ?? [])],
86
+ integrations: [vue({ appEntrypoint: "/src/app.js" }), ...(configFromFile.integrations ?? []), mdx()],
87
87
  vite: {
88
88
  plugins: [compiiile()],
89
89
  resolve: {