Skip to content

Commit 8bd2849

Browse files
committed
Remove tests, refactor structure and code style
1 parent 693d845 commit 8bd2849

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+3115
-8985
lines changed

.editorconfig

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
root = true
22

33
[*]
4-
charset = utf-8
4+
indent_style = tab
5+
indent_size = 4
56
end_of_line = lf
6-
indent_style = space
7-
indent_size = 2
87
trim_trailing_whitespace = true
98
insert_final_newline = true
10-
max_line_length = 100
9+
charset = utf-8
1110

12-
[*.{js,mjs,html,css}]
13-
indent_size = 4
11+
[*.yml]
12+
indent_style = space
13+
indent_size = 2

.eslintignore

-1
This file was deleted.

.eslintrc.yml

-33
This file was deleted.

.gitignore

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,2 @@
1-
logs
2-
chromedriver.log
31
node_modules
4-
npm-debug.log*
5-
/dist/shower.js
6-
/test/output
2+
dist

.huskyrc.json

-5
This file was deleted.

.lintstagedrc.yml

-7
This file was deleted.

.prettierignore

-1
This file was deleted.

.prettierrc.yml

-9
This file was deleted.

.travis.yml

-10
This file was deleted.

CHANGELOG.md

-13
This file was deleted.

docs/CODE_OF_CONDUCT.md renamed to CODE_OF_CONDUCT.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,11 @@ include:
2222

2323
Examples of unacceptable behavior by participants include:
2424

25-
- The use of sexualized language or imagery and unwelcome sexual attention or
26-
advances
25+
- The use of sexualized language or imagery and unwelcome sexual attention or advances
2726
- Trolling, insulting/derogatory comments, and personal or political attacks
2827
- Public or private harassment
29-
- Publishing others' private information, such as a physical or electronic
30-
address, without explicit permission
31-
- Other conduct which could reasonably be considered inappropriate in a
32-
professional setting
28+
- Publishing others' private information, such as a physical or electronic address, without explicit permission
29+
- Other conduct which could reasonably be considered inappropriate in a professional setting
3330

3431
## Our Responsibilities
3532

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Vadim Makeev
3+
Copyright (c) 2024 Vadim Makeev
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# Core of Shower [![Build Status](https://travis-ci.org/shower/core.svg?branch=main)](https://travis-ci.org/shower/core)
1+
# Core of Shower
22

33
Core of the [Shower](https://github.com/shower/shower) presentation engine. Doesn’t include themes. [See it in action](https://shwr.me). Follow [@shower_me](https://twitter.com/shower_me) for support and updates, [file an issue] if you have any.
44

55
## Usage
66

77
Get the [Shower template](https://github.com/shower/shower) with core already included. Download the template [archive](http://shwr.me/shower.zip) or install the package:
88

9-
npm install @shower/shower
9+
npm install @shower/shower
1010

1111
You can also install core as a separate package:
1212

13-
npm install @shower/core
13+
npm install @shower/core
1414

1515
## Development
1616

dist/plugin.js

-6
This file was deleted.

dist/tests/full-id.html

-20
This file was deleted.

dist/tests/full-next.html

-27
This file was deleted.

dist/tests/full-timer-next.html

-27
This file was deleted.

dist/tests/full-timer.html

-20
This file was deleted.

dist/tests/full-title.html

-24
This file was deleted.

dist/tests/full.html

-20
This file was deleted.

dist/tests/list-default-prevented.html

-21
This file was deleted.

dist/tests/list-hidden.html

-20
This file was deleted.

dist/tests/list-id.html

-20
This file was deleted.

0 commit comments

Comments
 (0)