Skip to content

Commit 6f8f880

Browse files
committed
Merge branch 'release/1.0.2'
2 parents 4ac6df1 + 14f97dc commit 6f8f880

File tree

3 files changed

+2796
-3407
lines changed

3 files changed

+2796
-3407
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## 1.0.2
5+
6+
* [Changed] Updated dependencies
7+
* [Fixed] Default build mode changed to production
8+
49
## 1.0.1
510

611
* [Added] TypeScript type definitions file

package.json

+39-37
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"name": "@micropackage/responsive-embeds",
3-
"description": "Makes any embed responsive, no markup changes required.",
4-
"version": "1.0.0",
5-
"main": "dist/responsive-embeds.js",
6-
"author": "Wojtek Szałkiewicz <[email protected]>",
7-
"license": "GPL-3.0-or-later",
8-
"homepage": "https://github.com/micropackage/responsive-embeds",
2+
"name": "@micropackage/responsive-embeds",
3+
"description": "Makes any embed responsive, no markup changes required.",
4+
"version": "1.0.2",
5+
"main": "dist/responsive-embeds.js",
6+
"author": "Wojtek Szałkiewicz <[email protected]>",
7+
"license": "GPL-3.0-or-later",
8+
"homepage": "https://github.com/micropackage/responsive-embeds",
99
"keywords": [
1010
"responsive",
1111
"fluid",
@@ -28,34 +28,36 @@
2828
"publishConfig": {
2929
"access": "public"
3030
},
31-
"devDependencies": {
32-
"@babel/core": "^7.8.4",
33-
"@babel/preset-env": "^7.8.4",
34-
"@wordpress/eslint-plugin": "^3.4.1",
35-
"babel-eslint": "^10.0.3",
36-
"babel-loader": "^8.0.6",
37-
"eslint": "^6.8.0",
38-
"webpack": "^4.41.5",
39-
"webpack-cli": "^3.3.10"
40-
},
41-
"scripts": {
42-
"build": "webpack --mode=development",
43-
"build:production": "webpack --mode=production",
44-
"start": "webpack --mode=development --watch",
45-
"lint": "eslint .",
46-
"lint-fix": "eslint . --fix"
47-
},
48-
"eslintConfig": {
49-
"extends": [ "plugin:@wordpress/eslint-plugin/esnext" ],
50-
"parserOptions": {
51-
"ecmaVersion": 11
52-
},
53-
"env": {
54-
"browser": true,
55-
"es2020": true
56-
},
57-
"ignorePatterns": [
58-
"dist/"
59-
]
60-
}
31+
"devDependencies": {
32+
"@babel/core": "^7.17.5",
33+
"@babel/preset-env": "^7.16.11",
34+
"@wordpress/eslint-plugin": "^10.0.2",
35+
"babel-eslint": "^10.0.3",
36+
"babel-loader": "^8.2.3",
37+
"eslint": "^8.10.0",
38+
"webpack": "^5.70.0",
39+
"webpack-cli": "^4.9.2"
40+
},
41+
"scripts": {
42+
"build": "webpack --mode=production",
43+
"dev": "webpack --mode=development",
44+
"start": "webpack --mode=development --watch",
45+
"lint": "eslint .",
46+
"lint-fix": "eslint . --fix"
47+
},
48+
"eslintConfig": {
49+
"extends": [
50+
"plugin:@wordpress/eslint-plugin/esnext"
51+
],
52+
"parserOptions": {
53+
"ecmaVersion": 11
54+
},
55+
"env": {
56+
"browser": true,
57+
"es2020": true
58+
},
59+
"ignorePatterns": [
60+
"dist/"
61+
]
62+
}
6163
}

0 commit comments

Comments
 (0)