Skip to content

Commit 680b2ab

Browse files
authored
Merge pull request #83 from jsumners/actions-update-and-version-bump
Actions update, dependencies update, and version bump
2 parents 821d5f0 + d4f3e1d commit 680b2ab

File tree

3 files changed

+11
-12
lines changed

3 files changed

+11
-12
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
macosx:
1111
runs-on: macos-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v2
13+
- uses: actions/checkout@main
14+
- uses: actions/setup-node@main
1515
- run: npm install
1616
- run: npm test
1717
- run: ./build.sh
18-
- uses: actions/upload-artifact@v2
18+
- uses: actions/upload-artifact@main
1919
with:
2020
name: alfred-emoji.alfredworkflow
2121
path: alfred-emoji.alfredworkflow

package.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.11.1",
2+
"version": "1.12.0",
33
"scripts": {
44
"webpack": "webpack",
55
"clean": "rm -f *.alfredworkflow; rm -rf output/*",
@@ -17,16 +17,15 @@
1717
"lint",
1818
"test"
1919
],
20-
"dependencies": {},
2120
"devDependencies": {
22-
"emojilib": "^3.0.2",
21+
"emojilib": "^3.0.6",
2322
"fontkit": "^1.8.1",
2423
"pre-commit": "^1.2.2",
2524
"snazzy": "^9.0.0",
26-
"standard": "^16.0.4",
27-
"tap": "^15.1.6",
28-
"unicode-emoji-json": "^0.3.0",
29-
"webpack": "^5.67.0",
25+
"standard": "^17.0.0",
26+
"tap": "^16.2.0",
27+
"unicode-emoji-json": "^0.3.1",
28+
"webpack": "^5.72.1",
3029
"webpack-cli": "^4.9.2"
3130
}
32-
}
31+
}

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const path = require('path')
22

33
module.exports = {
4-
mode: 'production',
4+
mode: 'none',
55
entry: './src/emoji.js',
66
target: 'web',
77
output: {

0 commit comments

Comments
 (0)