scratch-paint 2.1.60 → 2.1.62

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,20 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.1.62](https://github.com/LLK/scratch-paint/compare/v2.1.61...v2.1.62) (2023-12-23)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** update dependency scratch-l10n to v3.16.20231223032112 ([#2305](https://github.com/LLK/scratch-paint/issues/2305)) ([46c5751](https://github.com/LLK/scratch-paint/commit/46c5751d3ed83644be86aa96b5e87b446587f4bb))
12
+
13
+ ## [2.1.61](https://github.com/LLK/scratch-paint/compare/v2.1.60...v2.1.61) (2023-12-22)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * **deps:** update dependency scratch-l10n to v3.16.20231222031921 ([#2304](https://github.com/LLK/scratch-paint/issues/2304)) ([f028703](https://github.com/LLK/scratch-paint/commit/f028703ce1e34844bb5f9205c562c177e273afdb))
19
+
6
20
  ## [2.1.60](https://github.com/LLK/scratch-paint/compare/v2.1.59...v2.1.60) (2023-12-20)
7
21
 
8
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scratch-paint",
3
- "version": "2.1.60",
3
+ "version": "2.1.62",
4
4
  "description": "Graphical User Interface for the Scratch 3.0 paint editor, which is used to make and edit sprites for use in projects.",
5
5
  "main": "./dist/scratch-paint.js",
6
6
  "browser": "./src/index.js",
@@ -94,7 +94,7 @@
94
94
  "redux-throttle": "0.1.1",
95
95
  "regenerator-runtime": "0.13.9",
96
96
  "rimraf": "2.7.1",
97
- "scratch-l10n": "3.16.20231220031946",
97
+ "scratch-l10n": "3.16.20231223032112",
98
98
  "scratch-render-fonts": "1.0.0-prerelease.20231017225105",
99
99
  "scratch-semantic-release-config": "1.0.8",
100
100
  "semantic-release": "19.0.5",
@@ -1,124 +0,0 @@
1
- version: 2.1
2
- orbs:
3
- browser-tools: circleci/browser-tools@1.2.4
4
- node: circleci/node@5.0.2
5
- commitlint: conventional-changelog/commitlint@1.0.0
6
- aliases:
7
- - &defaults
8
- docker:
9
- - image: cimg/node:16.18.1-browsers
10
- auth:
11
- username: $DOCKERHUB_USERNAME
12
- password: $DOCKERHUB_PASSWORD
13
- working_directory: ~/repo
14
- environment:
15
- NODE_ENV: production
16
- - &setup
17
- node/install-packages:
18
- override-ci-command: npm --production=false ci
19
- - &lint
20
- run:
21
- name: "run lint tests"
22
- command: npm run lint -- --format junit -o ./test/results/lint-results.xml
23
- - &unit
24
- run:
25
- name: "run unit tests"
26
- command: JEST_JUNIT_OUTPUT_NAME=unit-jest-results.xml npm run unit -- --reporters=jest-junit
27
- - &build
28
- run:
29
- name: "run npm build"
30
- command: |
31
- NODE_ENV=production npm run build
32
- - &deploy-gh-pages
33
- run:
34
- name: "deploy to gh pages"
35
- command: |
36
- git config --global user.email $(git log --pretty=format:"%ae" -n1)
37
- git config --global user.name $(git log --pretty=format:"%an" -n1)
38
- npm run deploy -- -e $CIRCLE_BRANCH
39
-
40
- jobs:
41
- build-test:
42
- <<: *defaults
43
- steps:
44
- - checkout
45
- - *setup
46
- - *lint
47
- - *unit
48
- - *build
49
- - store_test_results:
50
- path: test/results
51
- - run: npx --no -- semantic-release --dry-run
52
- build-test-deploy:
53
- <<: *defaults
54
- steps:
55
- - checkout
56
- - *setup
57
- - *lint
58
- - *unit
59
- - *build
60
- - store_test_results:
61
- path: test/results
62
- - *deploy-gh-pages
63
- - run: npx --no -- semantic-release
64
- push-translations:
65
- <<: *defaults
66
- steps:
67
- - checkout
68
- - *setup
69
- - run:
70
- name: "run i18n script"
71
- command: |
72
- npm run i18n:src
73
- npm run i18n:push
74
-
75
- workflows:
76
- commitlint:
77
- jobs:
78
- - commitlint/lint:
79
- target-branch: develop
80
- filters:
81
- branches:
82
- ignore:
83
- - master
84
- - develop
85
- - beta
86
- - /^hotfix\/.*/
87
- build-test-no-deploy:
88
- jobs:
89
- - build-test:
90
- context:
91
- - dockerhub-credentials
92
- filters:
93
- branches:
94
- ignore:
95
- - master
96
- - develop
97
- - beta
98
- - /^hotfix\/.*/
99
- - gh-pages
100
- build-test-deploy:
101
- jobs:
102
- - build-test-deploy:
103
- context:
104
- - dockerhub-credentials
105
- - scratch-npm-creds
106
- filters:
107
- branches:
108
- only:
109
- - master
110
- - develop
111
- - beta
112
- - /^hotfix\/.*/
113
- push-translations:
114
- triggers:
115
- - schedule:
116
- cron: 0 0 * * * # daily at 12 UTC, 8 ET
117
- filters:
118
- branches:
119
- only:
120
- - develop
121
- jobs:
122
- - push-translations:
123
- context:
124
- - dockerhub-credentials