Merge pull request #1680 from ing-bank/fix/include-Directive

chore: Update to latest lit v1
This commit is contained in:
knorgias 2022-05-09 15:00:17 +02:00 committed by GitHub
commit 69cfa03531
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 1871 additions and 1868 deletions

View file

@ -0,0 +1,5 @@
---
'@lion/core': patch
---
Update to latest lit v1

30
.husky/_/husky.sh Normal file
View file

@ -0,0 +1,30 @@
#!/bin/sh
if [ -z "$husky_skip_init" ]; then
debug () {
[ "$HUSKY_DEBUG" = "1" ] && echo "husky (debug) - $1"
}
readonly hook_name="$(basename "$0")"
debug "starting $hook_name..."
if [ "$HUSKY" = "0" ]; then
debug "HUSKY env variable is set to 0, skipping hook"
exit 0
fi
if [ -f ~/.huskyrc ]; then
debug "sourcing ~/.huskyrc"
. ~/.huskyrc
fi
export readonly husky_skip_init=1
sh -e "$0" "$@"
exitCode="$?"
if [ $exitCode != 0 ]; then
echo "husky - $hook_name hook exited with code $exitCode (error)"
exit $exitCode
fi
exit 0
fi

View file

@ -39,7 +39,7 @@
"@open-wc/dedupe-mixin": "^1.2.18", "@open-wc/dedupe-mixin": "^1.2.18",
"@open-wc/scoped-elements": "^1.3.3", "@open-wc/scoped-elements": "^1.3.3",
"lit-element": "~2.4.0", "lit-element": "~2.4.0",
"lit-html": "^1.3.0" "lit-html": "^1.4.0"
}, },
"keywords": [ "keywords": [
"lion", "lion",

View file

@ -12,10 +12,13 @@
"alwaysStrict": true, "alwaysStrict": true,
"types": ["node", "mocha", "sinon"], "types": ["node", "mocha", "sinon"],
"esModuleInterop": true, "esModuleInterop": true,
"suppressImplicitAnyIndexErrors": true "suppressImplicitAnyIndexErrors": true,
"skipLibCheck": true
}, },
"include": ["packages/**/*.js", "packages-node/**/*.js"], "include": ["packages/**/*.js", "packages-node/**/*.js"],
"exclude": [ "exclude": [
"packages/**/*.test.js",
"packages/*/test-suites/*",
"node_modules", "node_modules",
"**/node_modules/*", "**/node_modules/*",
"**/coverage/*", "**/coverage/*",

3697
yarn.lock

File diff suppressed because it is too large Load diff