Skip to content

Commit e2b3837

Browse files
update(deps) : jsdom,mocha (#1030)
ci(deps): update jsdom,mocha
1 parent 26eebfa commit e2b3837

File tree

7 files changed

+266
-482
lines changed

7 files changed

+266
-482
lines changed

.github/workflows/dependabot-merger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
core.setOutput('pr_list', combinedPRsString);
115115
116116
- name: Post to a Slack channel
117-
uses: slackapi/slack-github-action@v1.24.0
117+
uses: slackapi/slack-github-action@v1.26.0
118118
id: slack
119119
with:
120120
channel-id: "C03RTLRKJQP"

.github/workflows/sync-readme-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
--data "$payload"
4040

4141
- name: Announce New Release in Slack
42-
uses: slackapi/slack-github-action@v1.24.0
42+
uses: slackapi/slack-github-action@v1.26.0
4343
with:
4444
channel-id: "C063MQJMKJN" #sdk-releases
4545
payload: |

.mocharc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
// Otherwise, JSON or YAML is recommended.
77

88
module.exports = {
9-
require: ['./node_modules/google-closure-library', './test/branch-deps.js', './node_modules/jsdom-global/register.js', './test/test-utils.js', './node_modules/sinon/lib/sinon.js'],
9+
require: ['./node_modules/google-closure-library', './test/branch-deps.js', 'global-jsdom/register', './test/test-utils.js', './node_modules/sinon/lib/sinon.js'],
1010
spec: ['./test/0_config.js','./test/0_queue.js','./test/1_utils.js','./test/6_branch_new.js', './test/journeys_utils.js']
1111
};

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ example.html: src/web/example.template.html
7979
ifeq ($(MAKECMDGOALS), release)
8080
perl -pe 'BEGIN{$$a="$(ONPAGE_RELEASE)"}; s#// INSERT INIT CODE#$$a#' src/web/example.template.html > example.html
8181
else ifeq ($(MAKECMDGOALS),dev)
82-
perl -pe 'BEGIN{$$a="$(ONPAGE_DEV)"; $$b="$(KEY_VALUE)"}; s#// INSERT INIT CODE#$$a#; s#key_place_holder#$$b#' src/web/example.template.html > dev/example.html
82+
perl -pe 'BEGIN{$$b="$(KEY_VALUE)"}; s#key_place_holder#$$b#' src/web/example.template.html > dev/example.template.html
83+
perl -pe 'BEGIN{$$a="$(ONPAGE_DEV)"}; s#// INSERT INIT CODE#$$a#' dev/example.template.html > dev/example.html
84+
rm -rf dev/example.template.html
8385
else
8486
perl -pe 'BEGIN{$$a="$(ONPAGE_DEV)"}; s#// INSERT INIT CODE#$$a#' src/web/example.template.html > example.html
8587
endif

0 commit comments

Comments
 (0)