diff --git a/.browserslistrc b/.browserslistrc new file mode 100644 index 0000000..e3480b7 --- /dev/null +++ b/.browserslistrc @@ -0,0 +1,4 @@ +defaults +not IE 11 +not op_mini all +not op_mob 64 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f9b320..560966b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a CHANGELOG](https://keepachangelog.com/). +## [8.0.0] - 2022-07-11 +- Updating packages +- Full change log can be checked on Github [frontend-libs release](https://github.com/infinum/eightshift-frontend-libs/releases/tag/7.0.0) and [libs release](https://github.com/infinum/eightshift-libs/releases/tag/6.0.0). + ## [7.0.0] - 2022-04-19 - Major braking changes do to updates on css variables, and helpers and updating min PHP version to 7.4. - Full change log can be checked on Github [releases](https://github.com/infinum/eightshift-frontend-libs/releases/tag/6.0.0). @@ -270,6 +274,7 @@ Initial tagged release. [Unreleased]: https://github.com/infinum/eightshift-boilerplate/compare/master...HEAD +[8.0.0]: https://github.com/infinum/eightshift-boilerplate/compare/7.0.0...v8.0.0 [7.0.0]: https://github.com/infinum/eightshift-boilerplate/compare/6.0.0...v7.0.0 [6.0.0]: https://github.com/infinum/eightshift-boilerplate/compare/5.0.1...v6.0.0 [5.0.1]: https://github.com/infinum/eightshift-boilerplate/compare/5.0.0...v5.0.1 diff --git a/LICENSE b/LICENSE index e8f0ee5..ebad12b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 Infinum and Eightshift +Copyright (c) 2022 Infinum and Eightshift Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/composer.json b/composer.json index 588b7fd..fc4d9df 100644 --- a/composer.json +++ b/composer.json @@ -24,22 +24,16 @@ "source": "https://github.com/infinum/eightshift-boilerplate" }, "require-dev": { - "infinum/eightshift-coding-standards": "^1.5", "dealerdirect/phpcodesniffer-composer-installer": "^0.7", - "szepeviktor/phpstan-wordpress": "^1.0.3", - "php-stubs/wordpress-stubs": "^5.9" + "infinum/eightshift-coding-standards": "^1.6", + "php-stubs/wordpress-stubs": "^5.9", + "szepeviktor/phpstan-wordpress": "^1.0.3" }, "require": { "php": "^7.4 || <8.0", - "infinum/eightshift-libs": "^5.0.0", + "infinum/eightshift-libs": "^6.0.0", "typisttech/imposter-plugin": "^0.6.2" }, - "repositories": [ - { - "type": "vcs", - "url": "https://github.com/infinum/eightshift-libs.git" - } - ], "autoload": { "psr-4": { "EightshiftBoilerplate\\": "src/" diff --git a/functions.php b/functions.php index d221a85..cdec3bc 100644 --- a/functions.php +++ b/functions.php @@ -5,7 +5,7 @@ * Description: Eightshift Boilerplate Description * Author: Team Eightshift * Author URI: https://eightshift.com/ - * Version: 5.0.0 + * Version: 8.0.0 * Text Domain: eightshift-boilerplate * * @package EightshiftBoilerplate diff --git a/package.json b/package.json index ea6d082..889f56c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eightshift/eightshift-boilerplate", - "version": "7.0.0", + "version": "8.0.0", "description": "This repository contains all the tools you need to start building a modern WordPress project.", "authors": [ { @@ -20,10 +20,8 @@ }, "homepage": "https://github.com/infinum/eightshift-boilerplate#readme", "scripts": { - "__eslintTheme": "eslint src/**/*.js", - "__stylelintTheme": "stylelint src/**/*.scss", - "lintStyle": "npm run __stylelintTheme", - "lintJs": "npm run __eslintTheme", + "lintStyle": "stylelint **/*.scss", + "lintJs": "eslint src/ assets/", "lint": "npm run lintJs && npm run lintStyle && composer standards:check -- --filter=gitstaged", "start": "webpack --progress --watch --mode development", "build": "webpack --progress --mode production", @@ -32,13 +30,12 @@ "storybook": "start-storybook -s public" }, "devDependencies": { - "@eightshift/storybook": "^5.6.1", - "husky": "^4.3.6", - "webpack": "^4.42.0", - "webpack-cli": "^4.3.1" + "husky": "^8.0.1", + "webpack": "^5.73.0", + "webpack-cli": "^4.10.0" }, "dependencies": { - "@eightshift/frontend-libs": "^6.0.0" + "@eightshift/frontend-libs": "^7.0.0" }, "husky": { "hooks": {