Skip to content

Commit

Permalink
Merge branch 'fix-npm-versions'
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegKrechkovskiy committed Aug 23, 2023
2 parents e8d3b5a + 4e7a2c6 commit 06e14c6
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: package installation test
run-name: Perform a test installation of packages 🚀
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install modules
run: npm cli
- run: echo "🖥️ npm install is ready"
5 changes: 4 additions & 1 deletion insales-config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
var extend = require('deepmix')
var fs = require('fs')
var imagemin = require('gulp-imagemin')
// var imagemin = require('gulp-imagemin')
async function imagemin() {
const { default: imagemin } = await import('./node_modules/gulp-imagemin');
}
var autoprefixer = require('insales-uploader-autoprefixer')
var jsValidate = require('gulp-jsvalidate');

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "uploader-work-space",
"version": "0.3.0",
"version": "0.4.0",
"description": "To work with Insales",
"main": "insales-config.js",
"dependencies": {
"deepmix": "^1.0.0",
"gulp-imagemin": "^4.1.0",
"gulp-jsvalidate": "^4.0.0",
"insales-uploader": "^1.12.6",
"gulp-imagemin": "^8.0.0",
"gulp-jsvalidate": "^5.0.0",
"insales-uploader": "^1.13.2",
"insales-uploader-autoprefixer": "^1.0.1"
},
"browserslist": [
Expand Down

0 comments on commit 06e14c6

Please sign in to comment.