splatone 0.0.14 → 0.0.15

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/color.js +2 -0
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -13,7 +13,7 @@ SNSのジオタグ付きポストをキーワードに基づいて収集する
13
13
 
14
14
  ## Change Log
15
15
 
16
- ### v0.0.13 → v0.0.14
16
+ ### v0.0.13 → v0.0.14 → v0.0.15
17
17
  * **[可視化モジュール]** ```--vis-majority-hex```追加
18
18
  * 結果の色固定機能追加 (キーワード指定方法を参照の事)
19
19
 
package/color.js CHANGED
@@ -1,3 +1,5 @@
1
+ #!/usr/bin/env node
2
+
1
3
  import paletteGenerator from './lib/paletteGenerator.js';
2
4
 
3
5
  // Usage: node color.js <count> <sets>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "splatone",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
4
4
  "description": "Multi-layer Composite Heatmap",
5
5
  "homepage": "https://github.com/YokoyamaLab/Splatone#readme",
6
6
  "bugs": {
@@ -16,7 +16,7 @@
16
16
  "main": "index.js",
17
17
  "bin": {
18
18
  "crawler": "./crawler.js",
19
- "color": "./color.js"
19
+ "colors": "./color.js"
20
20
  },
21
21
  "imports": {
22
22
  "#lib/*": "./lib/*.js"