sequoia-cli 0.5.2 → 0.5.3

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -102862,7 +102862,7 @@ function parse(toml, { maxDepth = 1000, integersAsBigInt } = {}) {
102862
102862
 
102863
102863
  // src/lib/markdown.ts
102864
102864
  function parseFrontmatter(content, mapping) {
102865
- const frontmatterRegex = /^(---|\+\+\+|\*\*\*)\n([\s\S]*?)\n\1\n([\s\S]*)$/;
102865
+ const frontmatterRegex = /^(---|\+\+\+|\*\*\*)\r?\n([\s\S]*?)\r?\n\1\r?\n([\s\S]*)$/;
102866
102866
  const match2 = content.match(frontmatterRegex);
102867
102867
  if (!match2) {
102868
102868
  throw new Error("Could not parse frontmatter");
@@ -105684,7 +105684,7 @@ Publish evergreen content to the ATmosphere
105684
105684
 
105685
105685
  > https://tangled.org/stevedylan.dev/sequoia
105686
105686
  `,
105687
- version: "0.5.2",
105687
+ version: "0.5.3",
105688
105688
  cmds: {
105689
105689
  add: addCommand,
105690
105690
  auth: authCommand,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sequoia-cli",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "sequoia": "dist/index.js"