dothtml 5.2.8 → 5.2.9

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/lib/dothtml.d.ts CHANGED
@@ -20,6 +20,7 @@ import dot from "./dot";
20
20
  * - Added flex gap.
21
21
  * - Added "auto" as an accepted value to many length types.
22
22
  * - Made textIndent a numeric prop.
23
+ * - Removed webpack. Build is now done with tsc.
23
24
  */
24
25
  export default dot;
25
26
  export { default as DotComponent } from "./component";
package/lib/dothtml.js CHANGED
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.DotComponent = void 0;
7
7
  const dot_1 = __importDefault(require("./dot"));
8
8
  const component_1 = __importDefault(require("./component"));
9
- dot_1.default.version = "5.2.8";
9
+ dot_1.default.version = "5.2.9";
10
10
  dot_1.default.Component = component_1.default;
11
11
  /*! DOThtml (c) Joshua Sideris | dothtml.org/license */
12
12
  /**
@@ -29,6 +29,7 @@ dot_1.default.Component = component_1.default;
29
29
  * - Added flex gap.
30
30
  * - Added "auto" as an accepted value to many length types.
31
31
  * - Made textIndent a numeric prop.
32
+ * - Removed webpack. Build is now done with tsc.
32
33
  */
33
34
  exports.default = dot_1.default;
34
35
  var component_2 = require("./component");
@@ -1 +1 @@
1
- {"version":3,"file":"dothtml.js","sourceRoot":"","sources":["../src/dothtml.ts"],"names":[],"mappings":";;;;;;AACA,gDAAwB;AACxB,4DAAoC;AAEpC,aAAG,CAAC,OAAO,GAAG,OAAO,CAAC;AACtB,aAAG,CAAC,SAAS,GAAG,mBAAS,CAAC;AAE1B,uDAAuD;AAEvD;;;;;;;;;;;;;;;;;;;;GAoBG;AAIH,kBAAe,aAAG,CAAC;AACnB,yCAAoD;AAA5C,0HAAA,OAAO,OAAgB;AAI/B,sCAAsC"}
1
+ {"version":3,"file":"dothtml.js","sourceRoot":"","sources":["../src/dothtml.ts"],"names":[],"mappings":";;;;;;AACA,gDAAwB;AACxB,4DAAoC;AAEpC,aAAG,CAAC,OAAO,GAAG,OAAO,CAAC;AACtB,aAAG,CAAC,SAAS,GAAG,mBAAS,CAAC;AAE1B,uDAAuD;AAEvD;;;;;;;;;;;;;;;;;;;;;GAqBG;AAIH,kBAAe,aAAG,CAAC;AACnB,yCAAoD;AAA5C,0HAAA,OAAO,OAAgB;AAI/B,sCAAsC"}
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "dothtml",
3
- "version": "5.2.8",
3
+ "version": "5.2.9",
4
4
  "description": "DOThtml is a client-side web building framework written in TypeScript.",
5
5
  "main": "./lib/dothtml.js",
6
- "exports": "./lib/index.js",
7
- "typings": "lib/dothtml.d.ts",
6
+ "exports": "./lib/dothtml.js",
7
+ "types": "./lib/dothtml.d.ts",
8
8
  "scripts": {
9
9
  "test": "npm run build & jest",
10
- "build": "tsc"
10
+ "build": "tsc --declaration"
11
11
  },
12
12
  "files": [
13
13
  "lib/**/*"