Skip to content

Commit a6f55c0

Browse files
committed
Updating angular libs
1 parent 444f36e commit a6f55c0

File tree

3 files changed

+42
-33
lines changed

3 files changed

+42
-33
lines changed

.circleci/config.yml

Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- restore_cache:
1111
keys:
1212
- node-{{ checksum "package-lock.json" }}
13-
- run: npm install
13+
- run: npm install --with=dev
1414
- save_cache:
1515
key: node-{{ checksum "package-lock.json" }}
1616
paths:
@@ -35,24 +35,25 @@ jobs:
3535
- store_artifacts:
3636
path: coverage
3737

38-
deploy:
39-
working_directory: ~/angular-google-charts
40-
docker:
41-
- image: node:16.10
42-
steps:
43-
- checkout
44-
- restore_cache:
45-
keys:
46-
- node-{{ checksum "package-lock.json" }}
47-
- run:
48-
name: Build
49-
command: npm run build
50-
- run:
51-
name: Authenticate with registry
52-
command: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/angular-google-charts/dist/angular-google-charts/.npmrc
53-
- run:
54-
name: Publish to npm
55-
command: cd dist/angular-google-charts && npm publish
38+
# Will have to come back to this
39+
# deploy:
40+
# working_directory: ~/angular-google-charts
41+
# docker:
42+
# - image: node:16.10
43+
# steps:
44+
# - checkout
45+
# - restore_cache:
46+
# keys:
47+
# - node-{{ checksum "package-lock.json" }}
48+
# - run:
49+
# name: Build
50+
# command: npm run build
51+
# - run:
52+
# name: Authenticate with registry
53+
# command: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/angular-google-charts/dist/angular-google-charts/.npmrc
54+
# - run:
55+
# name: Publish to npm
56+
# command: cd dist/angular-google-charts && npm publish
5657

5758
workflows:
5859
test-build-deploy:
@@ -67,11 +68,11 @@ workflows:
6768
filters:
6869
tags:
6970
only: /.*/
70-
- deploy:
71-
requires:
72-
- test
73-
filters:
74-
branches:
75-
ignore: /.*/
76-
tags:
77-
only: /^^v[0-9]\.[0-9]\.[0-9]$/
71+
# - deploy:
72+
# requires:
73+
# - test
74+
# filters:
75+
# branches:
76+
# ignore: /.*/
77+
# tags:
78+
# only: /^^v[0-9]\.[0-9]\.[0-9]$/

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,6 @@ testem.log
4141
# System Files
4242
.DS_Store
4343
Thumbs.db
44+
45+
# nodeenv
46+
env/

package.json

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,17 @@
3636
"npm": ">=7.0.0"
3737
},
3838
"devDependencies": {
39-
"@angular/core": "^14.0.3",
40-
"@angular/cli": "^14.0.3",
41-
"@angular/compiler": "^14.0.3",
42-
"@angular/compiler-cli": "^14.0.3",
43-
"@angular/language-service": "^14.0.3",
44-
"@angular-devkit/build-angular": "^14.0.3",
39+
"@angular-devkit/build-angular": "^17.3.2",
40+
"@angular-eslint/builder": "17.3.0",
41+
"@angular-eslint/eslint-plugin": "17.3.0",
42+
"@angular-eslint/eslint-plugin-template": "17.3.0",
43+
"@angular-eslint/schematics": "17.3.0",
44+
"@angular-eslint/template-parser": "17.3.0",
45+
"@angular/cli": "^17.3.2",
46+
"@angular/compiler": "^17.3.2",
47+
"@angular/compiler-cli": "^17.3.2",
48+
"@angular/core": "^17.3.2",
49+
"@angular/language-service": "^17.3.2",
4550
"@commitlint/cli": "^17.0.3",
4651
"@commitlint/config-conventional": "^17.0.3",
4752
"husky": "^8.0.1",

0 commit comments

Comments
 (0)