Skip to content

Commit 5557677

Browse files
committed
Merge branch 'main' into v3.0.0-dev
2 parents 2f9731b + f977830 commit 5557677

File tree

20 files changed

+1020
-294
lines changed

20 files changed

+1020
-294
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,9 @@ updates:
2525
versions: ['>=28']
2626
- dependency-name: 'jest-environment-node'
2727
versions: ['>=28']
28+
# Disable dependency updates used in release scripts
29+
# TODO(STENCIL-590): remove these once deps are removed
30+
- dependency-name: 'inquirer'
31+
versions: ['>7.3.3']
32+
- dependency-name: '@types/inquirer'
33+
versions: ['>7.3.1']

package-lock.json

Lines changed: 68 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"@typescript-eslint/eslint-plugin": "^5.38.0",
8585
"@typescript-eslint/parser": "^5.38.0",
8686
"@yarnpkg/lockfile": "^1.1.0",
87-
"ansi-colors": "4.1.1",
87+
"ansi-colors": "4.1.3",
8888
"autoprefixer": "10.2.5",
8989
"conventional-changelog-cli": "^2.2.2",
9090
"dts-bundle-generator": "~6.13.0",

src/compiler/build/build-ctx.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,11 @@ export class BuildContext implements d.BuildCtx {
196196
}
197197
}
198198

199+
/**
200+
* Generate a timestamp of the format `YYYY-MM-DDThh:mm:ss`, using the number of seconds that have elapsed since
201+
* January 01, 1970, and the time this function was called
202+
* @returns the generated timestamp
203+
*/
199204
export const getBuildTimestamp = () => {
200205
const d = new Date();
201206

0 commit comments

Comments
 (0)