@design-sdk/figma-url 0.0.23 → 0.0.26
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/{lib/access-check.d.ts → access-check.d.ts} +0 -0
- package/dist/{lib/access-check.js → access-check.js} +0 -0
- package/dist/{lib/analyze-url.d.ts → analyze-url.d.ts} +0 -0
- package/dist/{lib/analyze-url.js → analyze-url.js} +0 -0
- package/dist/{lib/compare-url.d.ts → compare-url.d.ts} +0 -0
- package/dist/{lib/compare-url.js → compare-url.js} +0 -0
- package/dist/{lib/constants.d.ts → constants.d.ts} +0 -0
- package/dist/{lib/constants.js → constants.js} +0 -0
- package/dist/{lib/embed-url.d.ts → embed-url.d.ts} +0 -0
- package/dist/{lib/embed-url.js → embed-url.js} +0 -0
- package/dist/index.d.ts +7 -1
- package/dist/index.js +7 -1
- package/dist/{lib/parse-url.d.ts → parse-url.d.ts} +0 -0
- package/dist/{lib/parse-url.js → parse-url.js} +0 -0
- package/dist/{lib/target-node-config.d.ts → target-node-config.d.ts} +0 -0
- package/dist/{lib/target-node-config.js → target-node-config.js} +0 -0
- package/package.json +3 -3
- package/dist/lib/index.d.ts +0 -7
- package/dist/lib/index.js +0 -19
|
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
|
|
File without changes
|
package/dist/index.d.ts
CHANGED
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("./
|
|
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
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@design-sdk/figma-url",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.26",
|
|
4
4
|
"description": "Figma url utils for sharing & embeding and url inspection",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
16
|
"clean": "rimraf dist",
|
|
17
|
-
"build": "
|
|
17
|
+
"build": "tsc",
|
|
18
18
|
"test": "jest"
|
|
19
19
|
},
|
|
20
20
|
"files": [
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "3c4229f8a74f5c61ed9e15a422cb0b249b4be932"
|
|
29
29
|
}
|
package/dist/lib/index.d.ts
DELETED
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);
|