@beauraines/sprint-tracker 0.6.5 → 0.6.6

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,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.6.6](https://bitbucket.org/beauraines/sprint-tracker/compare/v0.6.5...v0.6.6) (2023-12-13)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * cross-platform home dir in R ([#47](https://bitbucket.org/beauraines/sprint-tracker/issues/47)) ([19ea5da](https://bitbucket.org/beauraines/sprint-tracker/commit/19ea5dac5297d7ecbcb6d2b054940482dd46cf12))
11
+
5
12
  ### [0.6.5](https://bitbucket.org/beauraines/sprint-tracker/compare/v0.6.4...v0.6.5) (2023-12-13)
6
13
 
7
14
 
@@ -3,7 +3,7 @@ library(ggplot2)
3
3
 
4
4
  # sqlite3 --header --csv tracker.db < sql/sprintOutcomes.sql > /tmp/outcomes.csv
5
5
 
6
- outcomes = read_csv('~/outcomes.csv')
6
+ outcomes = read_csv(str_c(Sys.getenv("HOME"),"/","outcomes.csv"))
7
7
 
8
8
  outcomes <- outcomes %>%
9
9
  tibble() %>%
@@ -98,6 +98,6 @@ plot<-ggplot(outcomes,
98
98
 
99
99
  # plot # commented out for docker
100
100
 
101
- ggsave(str_c("~/",str_replace(unique(outcomes$project_name)," ",""),"SprintOutcomesCli.png"),plot=plot,bg="white", width = 2882, height = 1700, units = "px")
101
+ ggsave(str_c(Sys.getenv("HOME"),"/",str_replace(unique(outcomes$project_name)," ",""),"SprintOutcomesCli.png"),plot=plot,bg="white", width = 2882, height = 1700, units = "px")
102
102
 
103
- print(str_c("Saving to ",str_c("~/",str_replace(unique(outcomes$project_name)," ",""),"SprintOutcomesCli.png"),sep = " "))
103
+ print(str_c("Saving to ",str_c(Sys.getenv("HOME"),"/",str_replace(unique(outcomes$project_name)," ",""),"SprintOutcomesCli.png"),sep = " "))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beauraines/sprint-tracker",
3
- "version": "0.6.5",
3
+ "version": "0.6.6",
4
4
  "description": "Database and R visualizations to track sprint performance",
5
5
  "main": "cli.js",
6
6
  "bin": {