@lincode/events 1.0.31 → 1.0.32

Sign up to get free protection for your applications and to get access to all the features.
package/lib/index.js CHANGED
@@ -1,6 +1,5 @@
1
1
  export { default, default as Events } from "./Events";
2
2
  export { default as event, Event } from "./event";
3
- console.log("@lincode/events");
4
3
  const w = window;
5
4
  "__LINCODE_EVENTS__" in w &&
6
5
  console.warn("multiple versions of @lincode/events detected");
@@ -7,7 +7,6 @@ Object.defineProperty(exports, "Events", { enumerable: true, get: function () {
7
7
  var event_1 = require("./event");
8
8
  Object.defineProperty(exports, "event", { enumerable: true, get: function () { return event_1.default; } });
9
9
  Object.defineProperty(exports, "Event", { enumerable: true, get: function () { return event_1.Event; } });
10
- console.log("@lincode/events");
11
10
  const w = window;
12
11
  "__LINCODE_EVENTS__" in w &&
13
12
  console.warn("multiple versions of @lincode/events detected");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lincode/events",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "description": "Generated by ambients-cli",
5
5
  "author": "Lai Schwe",
6
6
  "license": "MIT",
@@ -8,8 +8,8 @@
8
8
  "ambients"
9
9
  ],
10
10
  "dependencies": {
11
- "@lincode/promiselikes": "^1.0.24",
12
- "@lincode/utils": "^1.3.5"
11
+ "@lincode/promiselikes": "^1.0.25",
12
+ "@lincode/utils": "^1.3.7"
13
13
  },
14
14
  "devDependencies": {
15
15
  "typescript": "^4.9.4"
package/src/index.ts CHANGED
@@ -1,7 +1,6 @@
1
1
  export { default, default as Events } from "./Events"
2
2
  export { default as event, EventFunctions, Event } from "./event"
3
3
 
4
- console.log("@lincode/events")
5
4
  const w = window as any
6
5
  "__LINCODE_EVENTS__" in w &&
7
6
  console.warn("multiple versions of @lincode/events detected")