@teambit/harmony 0.3.2 → 0.3.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.
- package/dist/index.d.ts +0 -1
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/index.ts +3 -1
- package/package-tar/teambit-harmony-0.3.3.tgz +0 -0
- package/package.json +2 -2
- package/{preview-1649339625423.js → preview-1649585224289.js} +1 -1
- package/package-tar/teambit-harmony-0.3.2.tgz +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -7,4 +7,3 @@ export { HarmonyError } from './exceptions/harmony-error';
|
|
|
7
7
|
export { Aspect } from './aspect';
|
|
8
8
|
export { RuntimeDefinition, RuntimeManifest } from './runtimes';
|
|
9
9
|
export { default as AspectGraph } from './extension-graph/extension-graph';
|
|
10
|
-
export { ConfigOptions, Config } from './harmony-config';
|
package/dist/index.js
CHANGED
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
6
|
+
exports.AspectGraph = exports.RuntimeDefinition = exports.Aspect = exports.HarmonyError = exports.SlotRegistry = exports.Slot = exports.Harmony = exports.createHook = exports.provider = exports.hook = exports.HookRegistry = exports.register = exports.Extension = exports.ExtensionDecorator = void 0;
|
|
7
7
|
var extension_1 = require("./extension");
|
|
8
8
|
Object.defineProperty(exports, "ExtensionDecorator", { enumerable: true, get: function () { return extension_1.ExtensionDecorator; } });
|
|
9
9
|
Object.defineProperty(exports, "Extension", { enumerable: true, get: function () { return extension_1.Extension; } });
|
|
@@ -25,6 +25,7 @@ var runtimes_1 = require("./runtimes");
|
|
|
25
25
|
Object.defineProperty(exports, "RuntimeDefinition", { enumerable: true, get: function () { return runtimes_1.RuntimeDefinition; } });
|
|
26
26
|
var extension_graph_1 = require("./extension-graph/extension-graph");
|
|
27
27
|
Object.defineProperty(exports, "AspectGraph", { enumerable: true, get: function () { return __importDefault(extension_graph_1).default; } });
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
// Not exposing it right now, as it's not browser compatible
|
|
29
|
+
// we need to expose it only for node, but not for browser
|
|
30
|
+
// export { ConfigOptions, Config} from './harmony-config';
|
|
30
31
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;;;AAAA,yCAAgH;AAAvG,+GAAA,kBAAkB,OAAA;AAAE,sGAAA,SAAS,OAAA;AAAE,qGAAA,QAAQ,OAAA;AAAE,yGAAA,YAAY,OAAA;AAAE,iGAAA,IAAI,OAAA;AAAE,qGAAA,QAAQ,OAAA;AAAE,uGAAA,UAAU,OAAA;AAC1F,qCAAkD;AAAzC,kGAAA,OAAO,OAAA;AAChB,iCAA6C;AAApC,6FAAA,IAAI,OAAA;AAAE,qGAAA,YAAY,OAAA;AAG3B,4DAA0D;AAAjD,6GAAA,YAAY,OAAA;AACrB,mCAAkC;AAAzB,gGAAA,MAAM,OAAA;AACf,uCAAgE;AAAvD,6GAAA,iBAAiB,OAAA;AAC1B,qEAA2E;AAAlE,+HAAA,OAAO,OAAe;AAC/B,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;;;AAAA,yCAAgH;AAAvG,+GAAA,kBAAkB,OAAA;AAAE,sGAAA,SAAS,OAAA;AAAE,qGAAA,QAAQ,OAAA;AAAE,yGAAA,YAAY,OAAA;AAAE,iGAAA,IAAI,OAAA;AAAE,qGAAA,QAAQ,OAAA;AAAE,uGAAA,UAAU,OAAA;AAC1F,qCAAkD;AAAzC,kGAAA,OAAO,OAAA;AAChB,iCAA6C;AAApC,6FAAA,IAAI,OAAA;AAAE,qGAAA,YAAY,OAAA;AAG3B,4DAA0D;AAAjD,6GAAA,YAAY,OAAA;AACrB,mCAAkC;AAAzB,gGAAA,MAAM,OAAA;AACf,uCAAgE;AAAvD,6GAAA,iBAAiB,OAAA;AAC1B,qEAA2E;AAAlE,+HAAA,OAAO,OAAe;AAC/B,4DAA4D;AAC5D,0DAA0D;AAC1D,2DAA2D"}
|
package/index.ts
CHANGED
|
@@ -7,4 +7,6 @@ export { HarmonyError } from './exceptions/harmony-error';
|
|
|
7
7
|
export { Aspect } from './aspect';
|
|
8
8
|
export { RuntimeDefinition, RuntimeManifest } from './runtimes';
|
|
9
9
|
export { default as AspectGraph } from './extension-graph/extension-graph';
|
|
10
|
-
|
|
10
|
+
// Not exposing it right now, as it's not browser compatible
|
|
11
|
+
// we need to expose it only for node, but not for browser
|
|
12
|
+
// export { ConfigOptions, Config} from './harmony-config';
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/harmony",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"homepage": "https://bit.dev/teambit/harmony/harmony",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.harmony",
|
|
8
8
|
"name": "harmony",
|
|
9
|
-
"version": "0.3.
|
|
9
|
+
"version": "0.3.3"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"reflect-metadata": "^0.1.13",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const overview = [require('/Users/giladshoham/Library/Caches/Bit/capsules/0c2e8decf63b913c66a649e2a025161ea05f3ab6/teambit.harmony_harmony@0.3.
|
|
1
|
+
export const overview = [require('/Users/giladshoham/Library/Caches/Bit/capsules/0c2e8decf63b913c66a649e2a025161ea05f3ab6/teambit.harmony_harmony@0.3.3/dist/harmony.docs.mdx')]
|
|
Binary file
|