Skip to content

Commit

Permalink
fixed issues
Browse files Browse the repository at this point in the history
  • Loading branch information
GH Pages Bot committed Jan 8, 2020
1 parent 52917bf commit e9a2852
Show file tree
Hide file tree
Showing 10 changed files with 151 additions and 104 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@

# build
/_site/
/dist/
/dist/
22 changes: 22 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
## editors
/.idea
/.vscode

## system files
.DS_Store

## npm
/node_modules/
/npm-debug.log

## testing
/coverage/

## temp folders
/.tmp/

# build
/_site/
/dist/
/lib/
demo/index.html
1 change: 1 addition & 0 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import { html, render } from 'lit-html';
import '../lit-place-input.js';
import '../node_modules/@material/mwc-textfield/mwc-textfield.js';

render(
html`
<lit-place-input class="left right"
Expand Down
3 changes: 2 additions & 1 deletion lib/LitPlaceInput.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { TextField } from '@material/mwc-textfield';
import '@google-web-components/google-apis/google-maps-api.js';
import '@material/mwc-icon/mwc-icon-font.js';
export default class LitPlaceInput extends TextField {
declare class LitPlaceInput extends TextField {
apiKey: string;
apiLoaded: boolean;
hideError: boolean;
Expand Down Expand Up @@ -93,4 +93,5 @@ export default class LitPlaceInput extends TextField {
*/
putPlace(newPlace: any): void;
}
export { LitPlaceInput };
//# sourceMappingURL=LitPlaceInput.d.ts.map
2 changes: 1 addition & 1 deletion lib/LitPlaceInput.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 19 additions & 16 deletions lib/LitPlaceInput.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/LitPlaceInput.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lit-place-input.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './lib/LitPlaceInput.js';
export {LitPlaceInput} from './lib/LitPlaceInput.js';
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"scripts": {
"build": "tsc",
"start": "es-dev-server --app-index demo/index.html --node-resolve --open --watch",
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"lint:prettier": "prettier \"**/*.js\" --check --ignore-path .gitignore",
"format:prettier": "prettier \"**/*.js\" --write --ignore-path .gitignore",
"lint:eslint": "eslint --ext .ts,.html . --ignore-path .prettierignore ",
"format:eslint": "eslint --ext .ts,.html . --fix --ignore-path .prettierignore ",
"lint:prettier": "prettier \"**/*.ts\" --check --ignore-path .prettierignore ",
"format:prettier": "prettier \"**/*.ts\" --write --ignore-path .prettierignore ",
"lint": "npm run lint:eslint && npm run lint:prettier",
"format": "npm run format:eslint && npm run format:prettier",
"test": "karma start --coverage",
Expand Down
Loading

0 comments on commit e9a2852

Please sign in to comment.