Merge pull request #1680 from ing-bank/fix/include-Directive
chore: Update to latest lit v1
This commit is contained in:
commit
69cfa03531
5 changed files with 1871 additions and 1868 deletions
5
.changeset/four-buses-drum.md
Normal file
5
.changeset/four-buses-drum.md
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
'@lion/core': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Update to latest lit v1
|
||||||
30
.husky/_/husky.sh
Normal file
30
.husky/_/husky.sh
Normal 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
|
||||||
|
|
@ -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",
|
||||||
|
|
|
||||||
|
|
@ -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/*",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue