Skip to content

Commit 739bcb3

Browse files
author
Alexander Rogalskiy
committed
Updates on files
1 parent d49ec1c commit 739bcb3

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.gitpod.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ RUN sudo apt-get update && \
4848
RUN sudo curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
4949
RUN sudo echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
5050

51-
RUN sudo curl -sL https://deb.nodesource.com/setup_10.x | bash -
51+
RUN sudo curl -sL https://deb.nodesource.com/setup_14.x | bash -
5252

5353
RUN sudo apt-get update && apt-get -y install yarn nodejs
5454

.prettierrc.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ quoteProps: 'consistent'
99
jsxSingleQuote: false
1010
trailingComma: 'all'
1111
bracketSpacing: true
12-
jsxBracketSameLine: true
1312
arrowParens: 'avoid'
1413
proseWrap: 'always'
1514
overrides:

CODEOWNERS

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Comment line immediately above ownership line is reserved for related gus information. Please be careful while editing.
2+
#ECCN:Open Source

mkdocs.yml

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ theme:
4646
search_index_only: true
4747
static_templates:
4848
- 404.html
49-
language: en
5049
font:
5150
text: Roboto
5251
code: Roboto Mono

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -143,15 +143,15 @@
143143
"get:submodule": "npm run _get:${GET:-submodule}",
144144
"get:version": "echo $npm_package_version",
145145
"getheapsize": "node -e 'console.log(`node heap limit = ${require(\"v8\").getHeapStatistics().heap_size_limit / (1024 * 1024)} Mb`)'",
146-
"git:authors": "test -f ./scripts/git_authors.sh && . ./scripts/git_authors.sh || echo 'Git authors script is missing'",
147-
"git:changelog": "test -f ./scripts/git_changelog.sh && . ./scripts/git_changelog.sh || echo 'Git changelog script is missing'",
148-
"git:check:branch": "test -f ./scripts/git_check_branch.sh && . ./scripts/git_check_branch.sh || echo 'Git check branch script is missing'",
146+
"git:authors": "test -f ./scripts/git_authors.sh && . ./scripts/git_authors.sh || echo 'Git authors script is missing'",
147+
"git:changelog": "test -f ./scripts/git_changelog.sh && . ./scripts/git_changelog.sh || echo 'Git changelog script is missing'",
148+
"git:check:branch": "test -f ./scripts/git_check_branch.sh && . ./scripts/git_check_branch.sh || echo 'Git check branch script is missing'",
149149
"git:clean": "git stash && git clean -fdX",
150150
"git:diff": "git --no-pager diff --exit-code --stat HEAD",
151151
"git:history": "test -f ./scripts/git_history.sh && . ./scripts/git_history.sh && cat datas.csv | chart-csv > datas.html || echo 'Git history script is missing'",
152152
"git:log": "git log -1 --format='format:%H' HEAD",
153153
"git:ls": "git cat-file -p HEAD && git ls-tree -r HEAD",
154-
"git:size": "test -f ./scripts/git_size.sh && . ./scripts/git_size.sh || echo 'Git size script is missing'",
154+
"git:size": "test -f ./scripts/git_size.sh && . ./scripts/git_size.sh || echo 'Git size script is missing'",
155155
"history:view": "npm run git:history && open datas.html",
156156
"husky:install": "is-ci || husky install",
157157
"lerna:canary": "lerna version prerelease --preid canary --message \"Publish Canary\" --exact",
@@ -182,7 +182,7 @@
182182
"markdown": "markdown-link-check ./README.md ./SECURITY.md",
183183
"package:changelog": "npm run dev --base_dir=../../ --workspace=packages/changelog --if-present",
184184
"package:contributors": "npm run dev --image_dir=../../images --workspace=packages/contributors --if-present",
185-
"package:name": "test -f ./scripts/package_app_name.js && node --experimental-modules --no-warnings --no-deprecation ./scripts/package_app_name.js || echo 'Node package name script is missing'",
185+
"package:name": "test -f ./scripts/package_app_name.js && node --experimental-modules --no-warnings --no-deprecation ./scripts/package_app_name.js || echo 'Node package name script is missing'",
186186
"postinstall": "npm run husky:install",
187187
"postversion": "git push --follow-tags && npm publish --access public",
188188
"preinstall": "npm run get:submodule",
@@ -195,7 +195,7 @@
195195
"release-major": "git checkout master && npm run all && npm run bump:major && git commit -a -m 'Build project codebase with major version' && git push origin master --tags",
196196
"release-minor": "git checkout master && npm run all && npm run bump:minor && git commit -a -m 'Build project codebase with minor version' && git push origin master --tags",
197197
"release-patch": "git checkout master && npm run all && npm run bump:patch && git commit -a -m 'Build project codebase with patch version' && git push origin master --tags",
198-
"release:md": "test -f ./scripts/git_release_notes.sh && . ./scripts/git_release_notes.sh > NOTES.md || echo 'Git release notes script is missing'",
198+
"release:md": "test -f ./scripts/git_release_notes.sh && . ./scripts/git_release_notes.sh > NOTES.md || echo 'Git release notes script is missing'",
199199
"remark": "remark -q -f .",
200200
"setheapsize": "export NODE_OPTIONS=--max_old_space_size=2048",
201201
"sort-package-json": "sort-package-json",
@@ -229,4 +229,4 @@
229229
"packages/*"
230230
]
231231
}
232-
}
232+
}

0 commit comments

Comments
 (0)