init with working gulp file and all needed dependencies. Next step to actually...
init with working gulp file and all needed dependencies. Next step to actually create a working test site with the created TypeScript definitions
parents
No related branches found
No related tags found
Showing
- .gitignore 3 additions, 0 deletions.gitignore
- gulpfile.js 153 additions, 0 deletionsgulpfile.js
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 44 additions, 0 deletionspackage.json
- src/css/style.css 30 additions, 0 deletionssrc/css/style.css
- src/html/index.html 13 additions, 0 deletionssrc/html/index.html
- src/icons/all-slides.svg 7 additions, 0 deletionssrc/icons/all-slides.svg
- src/icons/font-minus.svg 6 additions, 0 deletionssrc/icons/font-minus.svg
- src/icons/font-plus.svg 6 additions, 0 deletionssrc/icons/font-plus.svg
- src/icons/font-reset.svg 5 additions, 0 deletionssrc/icons/font-reset.svg
- src/icons/help.svg 7 additions, 0 deletionssrc/icons/help.svg
- src/icons/hide.svg 8 additions, 0 deletionssrc/icons/hide.svg
- src/icons/last.svg 7 additions, 0 deletionssrc/icons/last.svg
- src/icons/next.svg 6 additions, 0 deletionssrc/icons/next.svg
- src/icons/next_pointer.svg 5 additions, 0 deletionssrc/icons/next_pointer.svg
- src/icons/one-slide.svg 6 additions, 0 deletionssrc/icons/one-slide.svg
- src/icons/overview.svg 9 additions, 0 deletionssrc/icons/overview.svg
- src/icons/previous_pointer.svg 5 additions, 0 deletionssrc/icons/previous_pointer.svg
- src/icons/print.svg 24 additions, 0 deletionssrc/icons/print.svg
- src/icons/settings.svg 16 additions, 0 deletionssrc/icons/settings.svg
.gitignore
0 → 100644
gulpfile.js
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "rslidy", | ||
"version": "1.0.0", | ||
"description": "Rslidy: Lightweight, Accessible, and Responsive HTML5 Slide Decks", | ||
"main": "build/rslidy.js", | ||
"author": "Keith Andrews", | ||
"license": "MIT", | ||
"homepage": "https://projects.isds.tugraz.at/rslidy/", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/tugraz-isds/rslidy.git" | ||
}, | ||
"keywords": [ | ||
"Rslidy", | ||
"responsive", | ||
"accessible", | ||
"lightweight", | ||
"HTML5", | ||
"slides", | ||
"slide decks" | ||
], | ||
"devDependencies": { | ||
"browser-sync": "^2.27.5", | ||
"bufferutil": "^4.0.4", | ||
"del": "^3.0.0", | ||
"file-system": "^2.2.2", | ||
"gulp": "^4.0.2", | ||
"gulp-concat": "^2.6.1", | ||
"gulp-gzip": "^1.4.2", | ||
"gulp-rename": "^1.4.0", | ||
"gulp-terser": "^2.1.0", | ||
"gulp-typescript": "^6.0.0-alpha.1", | ||
"gulp-uglifycss": "^1.1.0", | ||
"lodash.template": "^4.5.0", | ||
"merge2": "^1.3.0", | ||
"source-map": "0.7.4", | ||
"svgo": "^2.7.0", | ||
"typescript": "^2.9.2", | ||
"utf-8-validate": "^5.0.6", | ||
"webpack": "^5.89.0", | ||
"webpack-stream": "^7.0.0", | ||
"yargs": "^15.0.2" | ||
} | ||
} |
src/css/style.css
0 → 100644
src/html/index.html
0 → 100644
src/icons/all-slides.svg
0 → 100644
src/icons/font-minus.svg
0 → 100644
src/icons/font-plus.svg
0 → 100644
src/icons/font-reset.svg
0 → 100644
src/icons/help.svg
0 → 100644
src/icons/hide.svg
0 → 100644
src/icons/last.svg
0 → 100644
src/icons/next.svg
0 → 100644
src/icons/next_pointer.svg
0 → 100644
src/icons/one-slide.svg
0 → 100644
src/icons/overview.svg
0 → 100644
src/icons/previous_pointer.svg
0 → 100644
src/icons/print.svg
0 → 100644
src/icons/settings.svg
0 → 100644
Please register or sign in to comment