Skip to content

Commit

Permalink
pluginkit
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Meilick <b@bnomei.com>
  • Loading branch information
bnomei committed Feb 6, 2019
1 parent c8e3fde commit e92232f
Show file tree
Hide file tree
Showing 28 changed files with 5,010 additions and 671 deletions.
22 changes: 22 additions & 0 deletions .editorconfig
@@ -0,0 +1,22 @@
[*.{css,scss,less,js,json,ts,sass,html,hbs,mustache,phtml,html.twig,md,yml}]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
indent_size = 4
trim_trailing_whitespace = false

[site/templates/**.php]
indent_size = 2

[site/snippets/**.php]
indent_size = 2

[package.json,.{babelrc,editorconfig,eslintrc,lintstagedrc,stylelintrc}]
indent_style = space
indent_size = 2
33 changes: 30 additions & 3 deletions .gitignore 100644 → 100755
@@ -1,3 +1,30 @@
vendor/
/kirby3-handlebars.zip
/kirby
# OS files
.DS_Store
.php_cs.cache

# lightncandy
/vendor/zordius/lightncandy/build
/vendor/zordius/lightncandy/specs
/vendor/zordius/lightncandy/tests
/vendor/zordius/lightncandy/*.png

# files of Composer dependencies that are not needed for the plugin
/vendor/**/.*
/vendor/**/*.json
/vendor/**/*.txt
/vendor/**/*.md
/vendor/**/*.yml
/vendor/**/*.yaml
/vendor/**/*.xml
/vendor/**/*.dist
/vendor/**/readme.php
/vendor/**/LICENSE
/vendor/**/COPYING
/vendor/**/VERSION
/vendor/**/docs/*
/vendor/**/example/*
/vendor/**/examples/*
/vendor/**/test/*
/vendor/**/tests/*
/vendor/**/php4/*
/vendor/getkirby/composer-installer
25 changes: 3 additions & 22 deletions composer.json
@@ -1,7 +1,7 @@
{
"name": "bnomei/kirby3-handlebars",
"type": "plugin",
"version": "2.0.1",
"type": "kirby-plugin",
"version": "2.1.0",
"license": "MIT",
"description": "Kirby 3 Component for semantic templates with Handlebars and Mustache",
"authors": [
Expand All @@ -23,12 +23,7 @@
"semantic",
"logic-less"
],
"suggest": {
},
"autoload": {
"files": [
"config.php"
],
"psr-4": {
"Bnomei\\": "classes/"
}
Expand All @@ -39,21 +34,7 @@
},
"require": {
"php": ">=7.1.0",
"getkirby/cms": "^3.0.0-RC-2.0",
"getkirby/composer-installer": "^1.1",
"zordius/lightncandy": "1.2.2"
},
"conflict": {
"getkirby/kirby": "<3.0"
},
"scripts": {
"zip": [
"touch kirby3-handlebars.zip",
"rm kirby3-handlebars.zip",
"composer install --no-dev",
"composer remove getkirby/cms",
"composer dumpautoload -o",
"zip -r kirby3-handlebars.zip . -x *.git*",
"composer require getkirby/cms:'^3.0.0-RC-2.0'"
]
}
}

0 comments on commit e92232f

Please sign in to comment.