scratch-paint 2.1.25 → 2.1.26
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/.babelrc +1 -1
- package/.github/workflows/deploy.yml +3 -2
- package/CHANGELOG.md +7 -0
- package/dist/scratch-paint.js +25182 -31441
- package/dist/scratch-paint.js.map +1 -1
- package/pack/scratch-paint-2.1.26.tgz +0 -0
- package/package.json +14 -14
- package/tmp.js +0 -0
- package/webpack.config.js +4 -1
- package/pack/scratch-paint-2.1.25.tgz +0 -0
package/.babelrc
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
"messagesDir": "./translations/messages/"
|
|
6
6
|
}]
|
|
7
7
|
],
|
|
8
|
-
"presets": [["env", {"targets": {"browsers": ["last 3 versions", "Safari >= 8", "iOS >= 8"]}}], "react"]
|
|
8
|
+
"presets": [["@babel/preset-env", {"targets": {"browsers": ["last 3 versions", "Safari >= 8", "iOS >= 8"]}}], "@babel/preset-react"]
|
|
9
9
|
}
|
|
@@ -4,7 +4,6 @@ on:
|
|
|
4
4
|
pull_request: # Runs whenever a pull request is created or updated
|
|
5
5
|
push: # Runs whenever a commit is pushed to the repository...
|
|
6
6
|
branches: [master, develop, beta, hotfix/*] # ...on any of these branches
|
|
7
|
-
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
|
|
8
7
|
|
|
9
8
|
concurrency:
|
|
10
9
|
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
|
|
@@ -41,7 +40,9 @@ jobs:
|
|
|
41
40
|
run: |
|
|
42
41
|
npm ci
|
|
43
42
|
mkdir -p ./test/results
|
|
44
|
-
- name: Lint
|
|
43
|
+
- name: Run Lint
|
|
44
|
+
run: npm run lint
|
|
45
|
+
- name: Run Tests
|
|
45
46
|
run: npm run test
|
|
46
47
|
- name: Build
|
|
47
48
|
run: npm run build
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
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.26](https://github.com/LLK/scratch-paint/compare/v2.1.25...v2.1.26) (2023-10-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **deps:** update dependency scratch-l10n to v3.16.20231018032141 ([#2256](https://github.com/LLK/scratch-paint/issues/2256)) ([0f7bedb](https://github.com/LLK/scratch-paint/commit/0f7bedbbd1a468535681d6a019008d6e9cb93433))
|
|
12
|
+
|
|
6
13
|
## [2.1.25](https://github.com/LLK/scratch-paint/compare/v2.1.24...v2.1.25) (2023-10-16)
|
|
7
14
|
|
|
8
15
|
|