@design-sdk/figma-url 0.0.22 → 0.0.25

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.
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/dist/index.d.ts CHANGED
@@ -1 +1,7 @@
1
- export * from "./lib";
1
+ export * from "./embed-url";
2
+ export * from "./parse-url";
3
+ export * from "./access-check";
4
+ export * from "./analyze-url";
5
+ export * from "./target-node-config";
6
+ export * from "./constants";
7
+ export * from "./compare-url";
package/dist/index.js CHANGED
@@ -10,4 +10,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
10
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
11
  };
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
- __exportStar(require("./lib"), exports);
13
+ __exportStar(require("./embed-url"), exports);
14
+ __exportStar(require("./parse-url"), exports);
15
+ __exportStar(require("./access-check"), exports);
16
+ __exportStar(require("./analyze-url"), exports);
17
+ __exportStar(require("./target-node-config"), exports);
18
+ __exportStar(require("./constants"), exports);
19
+ __exportStar(require("./compare-url"), exports);
File without changes
File without changes
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "@design-sdk/figma-url",
3
- "version": "0.0.22",
3
+ "version": "0.0.25",
4
4
  "description": "Figma url utils for sharing & embeding and url inspection",
5
5
  "license": "MIT",
6
6
  "private": false,
7
+ "main": "dist/index.js",
8
+ "types": "dist/index.d.ts",
7
9
  "homepage": "https://github.com/gridaco/design-sdk",
8
10
  "repository": "https://github.com/gridaco/design-sdk",
9
11
  "authors": [
@@ -12,7 +14,7 @@
12
14
  ],
13
15
  "scripts": {
14
16
  "clean": "rimraf dist",
15
- "build": "yarn clean && tsc",
17
+ "build": "tsc",
16
18
  "test": "jest"
17
19
  },
18
20
  "files": [
@@ -23,5 +25,5 @@
23
25
  "publishConfig": {
24
26
  "access": "public"
25
27
  },
26
- "gitHead": "2eb895de4d5f3f14173f8047c80be29bed1b26c9"
28
+ "gitHead": "75a0ceca5b1a3934a6e7617d0d9044a6f63ae11b"
27
29
  }
@@ -1,7 +0,0 @@
1
- export * from "./embed-url";
2
- export * from "./parse-url";
3
- export * from "./access-check";
4
- export * from "./analyze-url";
5
- export * from "./target-node-config";
6
- export * from "./constants";
7
- export * from "./compare-url";
package/dist/lib/index.js DELETED
@@ -1,19 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
- }) : (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- o[k2] = m[k];
8
- }));
9
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
- };
12
- Object.defineProperty(exports, "__esModule", { value: true });
13
- __exportStar(require("./embed-url"), exports);
14
- __exportStar(require("./parse-url"), exports);
15
- __exportStar(require("./access-check"), exports);
16
- __exportStar(require("./analyze-url"), exports);
17
- __exportStar(require("./target-node-config"), exports);
18
- __exportStar(require("./constants"), exports);
19
- __exportStar(require("./compare-url"), exports);