We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02a3a53 commit 93a4493Copy full SHA for 93a4493
.circleci/config.yml
@@ -38,7 +38,7 @@ jobs:
38
name: Run coveralls
39
command: 'cat temp/coverage/coverage.txt | ./node_modules/.bin/coveralls'
40
- store_artifacts:
41
- path: coverage
+ path: temp/coverage
42
prefix: coverage
43
publish_next:
44
<<: *defaults
src/loc/en-us.js renamed to src/loc/en-us.ts
@@ -1,7 +1,9 @@
1
-define([], function () {
+declare var define: any;
2
+
3
+define([], () => {
4
return {
5
'SiteBreadcrumbLabel': 'Website breadcrumb',
6
7
'ListViewGroupEmptyLabel': 'Empty'
- }
8
+ };
9
});
0 commit comments