diff --git a/.gitignore b/.gitignore index c97dc0d8a4..b3897b0d05 100644 --- a/.gitignore +++ b/.gitignore @@ -117,9 +117,11 @@ bin/wp-cli.phar /junit.xml # Cocoapods - ios/Pods ios/vendor # i18n update -i18n-test/ \ No newline at end of file +i18n-test/ + +# i18n cache +src/i18n-cache/ \ No newline at end of file diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 29c204d4b1..47fe933fb5 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -1,5 +1,6 @@ Unreleased --- +* [**] Fix content justification attribute in Buttons block [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4451] * [*] Hide help button from Unsupported Block Editor. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4352/] * [*] Add contrast checker to text-based blocks [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4357] diff --git a/package.json b/package.json index 19dd9ec581..9f1d94103a 100644 --- a/package.json +++ b/package.json @@ -87,9 +87,9 @@ "test:e2e:ios:local": "npm run test:e2e:bundle:ios && npm run core test:e2e:build-app:ios && npm run core test:e2e:build-wda && TEST_RN_PLATFORM=ios npm run device-tests:local", "sync:android": "bin/sync-android.sh", "build:gutenberg": "cd gutenberg && npm run build", - "clean": "npm run core clean; npm run clean:gutenberg; npm run clean:pot", + "clean": "npm run core clean; npm run clean:gutenberg; npm run clean:i18n", "clean:gutenberg": "cd gutenberg && npm run clean:packages", - "clean:pot": "rm -f gutenberg*.pot", + "clean:i18n": "rm -rf src/i18n-cache", "lint": "eslint . --ext .js", "lint:fix": "npm run lint -- --fix", "version": "npm run bundle && git add -A bundle" diff --git a/src/i18n-cache/.gitignore b/src/i18n-cache/.gitignore deleted file mode 100644 index 949443b9ad..0000000000 --- a/src/i18n-cache/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -# ignore all the contents of this folder except .gitignore and index.js -* -!.gitignore -!index.js