Skip to content

Commit 22d714f

Browse files
committed
feat(package): added additional input to mat-google-maps-autocomplete
2 parents 9bf2c40 + dfbf7cb commit 22d714f

File tree

91 files changed

+8345
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+8345
-4
lines changed

.circleci/config.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Javascript Node CircleCI 2.0 configuration file
2+
#
3+
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
4+
#
5+
version: 2
6+
jobs:
7+
build:
8+
docker:
9+
# specify the version you desire here
10+
- image: circleci/node:8.9.4-browsers
11+
12+
# Specify service dependencies here if necessary
13+
# CircleCI maintains a library of pre-built images
14+
# documented at https://circleci.com/docs/2.0/circleci-images/
15+
# - image: circleci/mongo:3.4.4
16+
17+
working_directory: ~/repo
18+
19+
environment:
20+
CHROME_BIN: "chromium-browser"
21+
22+
steps:
23+
- checkout
24+
25+
# Download and cache dependencies
26+
- restore_cache:
27+
keys:
28+
- v1-dependencies-{{ checksum "package.json" }}
29+
# fallback to using the latest cache if no exact match is found
30+
- v1-dependencies-
31+
- run: ls -la && pwd
32+
- run: git --version
33+
- run: npm install
34+
- run: npm install --only=dev
35+
- run: npm run build
36+
- run: ls -la && pwd
37+
38+
- save_cache:
39+
paths:
40+
- node_modules
41+
key: v1-dependencies-{{ checksum "package.json" }}
42+
43+
- persist_to_workspace:
44+
root: .
45+
paths:
46+
- dist
47+
# run tests!
48+
#- run: npm test
49+
50+
51+
52+

demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"ts-node": "~6.1.1",
7878
"tslint": "~5.10.0",
7979
"typescript": "~2.7.2",
80-
"webpack-cli": "^2.0.14",
80+
"webpack-cli": "^3.0.8",
8181
"yargs": "11.0.0"
8282
},
8383
"jest": {

0 commit comments

Comments
 (0)