resin-doodles 0.2.1 → 0.2.2
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/.versionbot/CHANGELOG.yml +12 -1
- package/CHANGELOG.md +5 -0
- package/build/charlie-christmas.js +3 -3
- package/build/charlie.js +3 -3
- package/build/pumpkin.js +3 -3
- package/lib/charlie-christmas.coffee +2 -2
- package/lib/charlie.coffee +2 -2
- package/lib/pumpkin.coffee +2 -2
- package/package.json +3 -3
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
- commits:
|
|
2
|
+
- subject: Replace `chalk` with `ansis`
|
|
3
|
+
hash: 47c141abb9558b7f6c6b4a2ed00ed4e2350558d7
|
|
4
|
+
body: ""
|
|
5
|
+
footer:
|
|
6
|
+
Change-type: patch
|
|
7
|
+
change-type: patch
|
|
8
|
+
author: Matthew Yarmolinsky
|
|
9
|
+
version: 0.2.2
|
|
10
|
+
title: ""
|
|
11
|
+
date: 2025-09-16T17:47:12.210Z
|
|
1
12
|
- commits:
|
|
2
13
|
- subject: Add dummy `test` script for flowzone
|
|
3
14
|
hash: df592981026aa3d8fc486ac7fbc3c9ec2bd6b038
|
|
@@ -15,7 +26,7 @@
|
|
|
15
26
|
author: Matthew Yarmolinsky
|
|
16
27
|
version: 0.2.1
|
|
17
28
|
title: ""
|
|
18
|
-
date: 2025-09-16T17:02
|
|
29
|
+
date: 2025-09-16T17:09:02.010Z
|
|
19
30
|
- version: 0.2.0
|
|
20
31
|
date: 2022-01-12T12:40:53Z
|
|
21
32
|
commits:
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file
|
|
|
4
4
|
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
|
5
5
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
# v0.2.2
|
|
8
|
+
## (2025-09-16)
|
|
9
|
+
|
|
10
|
+
* Replace `chalk` with `ansis` [Matthew Yarmolinsky]
|
|
11
|
+
|
|
7
12
|
# v0.2.1
|
|
8
13
|
## (2025-09-16)
|
|
9
14
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
(function() {
|
|
2
|
-
var blue, bold,
|
|
2
|
+
var blue, bold, ansis, red, white;
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
ansis = require('ansis');
|
|
5
5
|
|
|
6
|
-
({blue, bold, red, white} =
|
|
6
|
+
({blue, bold, red, white} = ansis);
|
|
7
7
|
|
|
8
8
|
module.exports = bold([blue(' \\'), blue(' \\ ') + white('') + red(' .,-.') + white('@'), blue(' \\\\ ') + white(' ') + red('.^xxx-'), blue(' \\\\,') + white('xx') + red('xxx;'), blue(' > ') + white(' xx') + red('x/'), blue(" _.-(6'") + white(' xx'), blue(' (=___._/` \\'), blue(' ) \\ |'), blue(' / / |'), blue(' / > /'), blue(' j < _\\'), blue(" _.-' : ``."), blue(' \\ r=._\\ `.'), blue('<`\\\\_ \\ .`-.'), blue(" \\ r-7 `-. ._ ' . `\\"), blue(' \\`, `-.`7 7) )'), blue(" \\/ \\| \\' / `-._"), blue(" || .'"), blue(' \\\\ ('), blue(' >\\ >'), blue(" ,.-' >.'"), blue(" <.'_.'"), blue(" <'"), blue('')].join('\n').replace(/^/gm, '\t\t\t'));
|
|
9
9
|
|
package/build/charlie.js
CHANGED
package/build/pumpkin.js
CHANGED
package/lib/charlie.coffee
CHANGED
package/lib/pumpkin.coffee
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "resin-doodles",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Resin doodles for text based happiness, via unicorns!",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"homepage": "https://github.com/resin-io-modules/resin-doodles#readme",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"
|
|
18
|
+
"ansis": "^4.1.0"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
21
|
"test": "printf There are no tests"
|
|
@@ -27,6 +27,6 @@
|
|
|
27
27
|
"gulp-sourcemaps": "^3.0.0"
|
|
28
28
|
},
|
|
29
29
|
"versionist": {
|
|
30
|
-
"publishedAt": "2025-09-16T17:
|
|
30
|
+
"publishedAt": "2025-09-16T17:47:12.249Z"
|
|
31
31
|
}
|
|
32
32
|
}
|