Skip to content

Commit 897fcd2

Browse files
committed
Restructure/retouch the project
- Project is Clutter-free now - Fix linter and linting issues - Drop some old gnome-shell versions - Remove some useless codes
1 parent 0b9c17f commit 897fcd2

File tree

24 files changed

+1052
-920
lines changed

24 files changed

+1052
-920
lines changed

.eslintrc.yml

Lines changed: 0 additions & 237 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
lints:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
10-
- name: Install modules
11-
run: npm install eslint
12-
- name: Lint
13-
run: |
14-
./node_modules/.bin/eslint PersianCalendar@oxygenws.com
9+
- uses: actions/checkout@v2
10+
- name: Install modules
11+
run: npm install
12+
- name: Lint
13+
run: |
14+
./node_modules/.bin/eslint PersianCalendar@oxygenws.com

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ build
44
**/gschemas.compiled
55
PersianCalendar@oxygenws.com/locale/**/LC_MESSAGES/*~
66
PersianCalendar@oxygenws.com/locale/**/LC_MESSAGES/*.mo
7+
node_modules/
8+
*.lock

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,12 @@ release: _version_bump _build
2424
git tag $(_VERSION)
2525
git push
2626
git push --tags
27+
$(MAKE) zip
28+
29+
zip: _build
2730
cd build && zip -qr ../"$(_UUID)$(_VERSION).zip" .
2831
$(MAKE) clean
29-
32+
3033
eslint:
3134
eslint --fix PersianCalendar@oxygenws.com
3235

0 commit comments

Comments
 (0)