-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 🎸 add a meta package kittik that reexports everything
When building a presentation with kittik, you need to have different builders from different packages. This meta package "kittik" combines everything in one, so you can import everything you need from one package.
- Loading branch information
Showing
9 changed files
with
144 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.rush | ||
coverage | ||
dist | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
extends: './node_modules/kittik-eslint-config/.eslintrc.json', | ||
parserOptions: { | ||
tsconfigRootDir: __dirname | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = require('kittik-jest-config'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
{ | ||
"name": "kittik", | ||
"version": "5.1.0-beta.3", | ||
"description": "Kittik CLI and main package to import everything for building slides", | ||
"homepage": "https://github.com/ghaiklor/kittik/#readme", | ||
"license": "MIT", | ||
"main": "dist/index.js", | ||
"author": { | ||
"email": "[email protected]", | ||
"name": "Eugene Obrezkov", | ||
"url": "https://ghaiklor.com" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ghaiklor/kittik.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/ghaiklor/kittik/issues", | ||
"email": "[email protected]" | ||
}, | ||
"keywords": [ | ||
"kittik", | ||
"ascii", | ||
"art", | ||
"slides", | ||
"deck", | ||
"presentation" | ||
], | ||
"files": [ | ||
"dist" | ||
], | ||
"engines": { | ||
"node": ">=14.0.0" | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"clean": "rimraf coverage dist tsconfig.tsbuildinfo *.log", | ||
"lint": "eslint --fix --ext .js,.ts .", | ||
"test": "exit 0" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "14.0.11", | ||
"@typescript-eslint/eslint-plugin": "3.1.0", | ||
"eslint-plugin-import": "2.20.2", | ||
"eslint-plugin-jest": "23.13.2", | ||
"eslint-plugin-node": "11.1.0", | ||
"eslint-plugin-promise": "4.2.1", | ||
"eslint-plugin-standard": "4.0.1", | ||
"eslint": "7.2.0", | ||
"jest": "26.0.1", | ||
"kittik-eslint-config": "1.0.0", | ||
"kittik-jest-config": "1.0.0", | ||
"kittik-tsc-config": "1.0.0", | ||
"rimraf": "3.0.2", | ||
"typescript": "3.9.5" | ||
}, | ||
"dependencies": { | ||
"kittik-deck": "5.1.0-beta.3", | ||
"kittik-slide": "5.1.0-beta.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
export { | ||
Deck, | ||
DeckBuilder | ||
} from 'kittik-deck'; | ||
|
||
export { | ||
AnimationBuilder, | ||
AnimationObject, | ||
AnimationOptions, | ||
AnimationType, | ||
ShapeBuilder, | ||
ShapeObject, | ||
ShapeOptions, | ||
ShapeType, | ||
Slide, | ||
SlideBuilder | ||
} from 'kittik-slide'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"extends": "./node_modules/kittik-tsc-config/tsconfig.eslint.json", | ||
"include": [ | ||
"**/*.*" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"extends": "./node_modules/kittik-tsc-config/tsconfig.json", | ||
"compilerOptions": { | ||
"outDir": "dist", | ||
"rootDir": "src" | ||
}, | ||
"include": [ | ||
"src/**/*.*" | ||
] | ||
} |