tickplate 1.0.3 → 1.0.4

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/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## [Unreleased][unreleased]
4
4
 
5
+ ## [1.0.4][] - 2022-05-12
6
+
7
+ - Package maintenance
8
+
5
9
  ## [1.0.3][] - 2021-07-17
6
10
 
7
11
  - Fix d.ts typings and include typings to package publishing files
@@ -22,7 +26,8 @@
22
26
 
23
27
  ## [0.0.x][] Pre-release versions
24
28
 
25
- [unreleased]: https://github.com/metarhia/tickplate/compare/v1.0.3...HEAD
29
+ [unreleased]: https://github.com/metarhia/tickplate/compare/v1.0.4...HEAD
30
+ [1.0.4]: https://github.com/metarhia/tickplate/compare/v1.0.3...v1.0.4
26
31
  [1.0.3]: https://github.com/metarhia/tickplate/compare/v1.0.2...v1.0.3
27
32
  [1.0.2]: https://github.com/metarhia/tickplate/compare/v1.0.1...v1.0.2
28
33
  [1.0.1]: https://github.com/metarhia/tickplate/compare/v1.0.0...v1.0.1
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2017-2021 Metarhia contributors
3
+ Copyright (c) 2017-2022 Metarhia contributors
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -36,6 +36,6 @@ console.log(templ(data));
36
36
 
37
37
  ## License & Contributors
38
38
 
39
- Copyright (c) 2017-2021 [Metarhia contributors](https://github.com/metarhia/tickplate/graphs/contributors).
39
+ Copyright (c) 2017-2022 [Metarhia contributors](https://github.com/metarhia/tickplate/graphs/contributors).
40
40
  Tickplate is [MIT licensed](./LICENSE).\
41
41
  Tickplate is a part of [Metarhia](https://github.com/metarhia) technology stack.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tickplate",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>",
5
5
  "description": "Back-tick templates for JavaScript",
6
6
  "license": "MIT",
@@ -31,7 +31,7 @@
31
31
  "tickplate.d.ts"
32
32
  ],
33
33
  "engines": {
34
- "node": "^12.9 || 14 || 16"
34
+ "node": "^12.9 || 14 || 16 || 17 || 18"
35
35
  },
36
36
  "readmeFilename": "README.md",
37
37
  "scripts": {
@@ -41,11 +41,11 @@
41
41
  "fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\" \"**/*.yml\""
42
42
  },
43
43
  "devDependencies": {
44
- "eslint": "^7.30.0",
44
+ "eslint": "^8.15.0",
45
45
  "eslint-config-metarhia": "^7.0.1",
46
46
  "eslint-config-prettier": "^8.3.0",
47
47
  "eslint-plugin-import": "^2.23.4",
48
- "eslint-plugin-prettier": "^3.4.0",
48
+ "eslint-plugin-prettier": "^4.0.0",
49
49
  "prettier": "^2.3.2",
50
50
  "typescript": "^4.3.4"
51
51
  }