Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…ebec into next
  • Loading branch information
alecarn committed Jul 20, 2023
2 parents 75ace13 + a00538b commit f2084d9
Show file tree
Hide file tree
Showing 80 changed files with 39,453 additions and 9,013 deletions.
5 changes: 3 additions & 2 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# This file is currently used by autoprefixer to adjust CSS to support the below specified browsers
# For additional information regarding the format and rule options, please see:
# https://github.com/browserslist/browserslist#queries
# For IE 9-11 support, please uncomment the last line of the file and adjust as needed
# adjust as needed
> 0.5%
last 2 versions
Firefox ESR
not dead
not IE 9-11
not IE 9-10
not IE 11
2 changes: 1 addition & 1 deletion .github/workflows/gh-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install [email protected]
if: startsWith(github.ref, 'refs/tags/')
run: npm install [email protected]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/onPush.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
node-version: [16.x, 18.x]

steps:
- name: The branch or tag ref that triggered the workflow run.
run: echo ${GITHUB_REF#refs/*/}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install @angular/cli
Expand Down
6 changes: 3 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@
"src/assets",
"src/config",
"src/contexts",
"src/locale",
"src/particular/locale",
"src/locale"
{
"glob": "**/*",
"input": "./node_modules/@igo2/common/assets/",
Expand Down Expand Up @@ -253,6 +252,7 @@
"cache": {
"enabled": false,
"environment": "all"
}
},
"analytics": false
}
}
8 changes: 0 additions & 8 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/*jshint esversion: 6 */
const gulp = require('gulp');
const bump = require('gulp-bump');
const package = require('./package.json')

gulp.task('copyLocaleFromLib', done => {
gulp
Expand All @@ -15,9 +13,3 @@ gulp.task('watch:locale', function () {
gulp.watch('./node_modules/@igo2/core/locale/*.json', gulp.series('copyLocaleFromLib'));
});

gulp.task('bumpPwaVersionDev', done => {
gulp.src(['./ngsw-config.json'])
.pipe(bump({ type: 'prerelease' }))
.pipe(gulp.dest('./'));
done();
});
6 changes: 3 additions & 3 deletions ngsw-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"$schema": "./node_modules/@angular/service-worker/config/schema.json",
"index": "/index.html",
"appData": {
"changelog": "Initial version",
"version": "1.13.4"
"changelog": "Version update",
"version": "1.15.0"
},
"assetGroups": [
{
Expand Down Expand Up @@ -48,7 +48,7 @@
"resources": {
"files": [
"/assets/**",
"/*.(eot|svg|cur|jpg|png|webp|gif|otf|ttf|woff|woff2|ani)"
"/*.(pdf|eot|svg|cur|jpg|png|webp|gif|otf|ttf|woff|woff2|ani)"
]
}
}
Expand Down
Loading

0 comments on commit f2084d9

Please sign in to comment.