@semigarden/synthetic-md-react 0.0.5 → 0.0.6

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.
package/dist/index.cjs.js CHANGED
@@ -17,14 +17,14 @@ var __copyProps = (to, from, except, desc) => {
17
17
  };
18
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
19
 
20
- // index.ts
20
+ // src/index.ts
21
21
  var index_exports = {};
22
22
  __export(index_exports, {
23
23
  SyntheticText: () => SyntheticText_default
24
24
  });
25
25
  module.exports = __toCommonJS(index_exports);
26
26
 
27
- // SyntheticText.tsx
27
+ // src/SyntheticText.tsx
28
28
  var import_react = require("react");
29
29
  var import_synthetic_md = require("@semigarden/synthetic-md");
30
30
  var import_jsx_runtime = require("react/jsx-runtime");
package/dist/index.esm.js CHANGED
@@ -1,4 +1,4 @@
1
- // SyntheticText.tsx
1
+ // src/SyntheticText.tsx
2
2
  import { useEffect, forwardRef } from "react";
3
3
  import { defineElement } from "@semigarden/synthetic-md";
4
4
  import { jsx } from "react/jsx-runtime";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@semigarden/synthetic-md-react",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "React wrapper for synthetic-md",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -35,8 +35,8 @@
35
35
  "dist"
36
36
  ],
37
37
  "scripts": {
38
- "build": "tsup index.ts --format esm,cjs --dts",
39
- "dev": "tsup index.ts --watch --format esm,cjs --dts",
38
+ "build": "tsup src/index.ts --format esm,cjs --dts",
39
+ "dev": "tsup src/index.ts --watch --format esm,cjs --dts",
40
40
  "prepublishOnly": "npm run build"
41
41
  },
42
42
  "peerDependencies": {