Skip to content
Snippets Groups Projects
Commit a1cd7340 authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

package generator

parent bc861a3e
No related branches found
No related tags found
No related merge requests found
......@@ -82,6 +82,14 @@ EXECUTABLES = $(AWK) $(CP) $(KILL) $(M4) $(MV) rm mkdir $(SED) $(SORT) $(TOUCH)
K := $(foreach exec,$(EXECUTABLES),\
$(if $(shell which $(exec)),some string,$(error "Missing $(exec) in PATH; please install")))
check_defined = \
$(strip $(foreach 1,$1, \
$(call __check_defined,$1,$(strip $(value 2)),$3)))
__check_defined = \
$(if $(value $1),, \
$(ECHOERRORMARKER) $(if $2, $2, $1))
#############################################################################################
#############################################################################################
##
......@@ -212,6 +220,21 @@ $(NODE_MODULES_DIR): $(THIS_DIR)package.json
$(QUIET) $(NPM) install
#############################################################################################
## UNTILITIES ###############################################################################
#############################################################################################
.PHONY: new-package
## init new package structure
new-package:
$(QUIET) $(call check_defined, NAME, the variable NAME must be set)
$(QUIET) if [ ! -n "$(NAME)" ] ; then echo "$(ERRORMARKER) the variable NAME must be set." ; exit 3 ; fi
$(QUIET) $(MKDIR) $(THIS_DIR)packages/$(NAME)
$(QUIET) $(CP) -r $(THIS_DIR)templates/ $(THIS_DIR)packages/${NAME}
$(QUIET) $(GREP) -rl '%%NAME%%' ./ | xargs sed -i 's/%%NAME%%/$(NAME)/g'
#############################################################################################
## MONSTER CORE #############################################################################
#############################################################################################
......
......@@ -17,7 +17,7 @@ One design target is to reach the shiny sun with as little Javascript as possibl
Monster was built with ES6 modules and uses [import](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Statements/import)
and [export](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/export).
There is a version in the `/dist` folder that was built via browserfy and
There is a version in the `/dist` folder that was built via [browserify](https://browserify.org/) and
thus supports all browsers that are compatible with ES5.
......
......@@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Mocha</title>
<title>Mocha Monster</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="mocha.css"/>
</head>
......
# Changelog
All notable changes to this project will be documented in this file.
## [x.x.x] - 2021-06-28
### Added
This diff is collapsed.
# %%NAME%%
Monster is a lightweight, robust and easy-to-use library with modest ambitions.
Monster integrates easily into your existing websites without taking over
everything.
It is not the goal of Monster to pull in a completely new abstraction
with its own language, but to combine the existing techniques of HTML,
CSS and Javascript in a meaningful way.
Monster is perfectly suited for the creation of beautiful and fast
user interfaces and websites. The basis is formed by core functions that
can be supplemented by necessary classes and objects.
One design target is to reach the shiny sun with as little Javascript as possible.
Monster was built with ES6 modules and uses [import](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Statements/import)
and [export](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/export).
There is a version in the `/dist` folder that was built via [browserify](https://browserify.org/) and
thus supports all browsers that are compatible with ES5.
## Installation
```
npm install @schukai/monster @schukai/%%NAME%%
```
## CDN
```
<script type="module">
import {Monster} from 'https://unpkg.com/@schukai/monster@1.0.15/dist/modules/monster.js';
import {Monster} from 'https://unpkg.com/@schukai/%%NAME%%@1.0.15/dist/modules/monster.js';
console.log(Module.getVersion())
</script>
```
nomodule for backwards compatibility
```
<script type="module" src="module.mjs"></script>
<script nomodule src="https://unpkg.com/@schukai/monster@1.0.15/dist/monster.js"></script>
<script nomodule src="https://unpkg.com/@schukai/%%NAME%%@1.0.15/dist/monster.js"></script>
```
## Documentation
To check out docs and examples, visit [doc.alvine.io](https://doc.alvine.io/en/oss/monster/snapshot/).
## Questions
For questions and commercial support please contact [schukai GmbH](https://www.schukai.com/).
The issue list of this repo is exclusively for bug reports and feature requests.
## Issues
Please make sure to read the Issue Reporting Checklist before opening an
issue. Issues not conforming to the guidelines may be closed immediately.
## License
Copyright © 2021 schukai GmbH
[AGPL](https://www.gnu.org/licenses/agpl-3.0.de.html)
you can also purchase a commercial licence
## Changelog
Detailed changes for each release are documented in
the [CHANGELOG](CHANGELOG).
{
"name": "@schukai/%%NAME%%",
"version": "0.9.0",
"description": "Monster is a simple library for creating fast, robust and lightweight websites.",
"keywords": [
"framework",
"web",
"dom",
"css",
"sass",
"mobile-first",
"app",
"front-end",
"templates",
"schukai",
"core",
"shopcloud",
"alvine",
"monster"
],
"type": "module",
"homepage": "https://gitlab.schukai.com/oss/libraries/javascript/monster",
"main": "dist/monster.js",
"module": "dist/modules/monster.js",
"author": "schukai GmbH",
"license": "AGPL 3.0"
}
\ No newline at end of file
/** this file was created automatically by the make target test-browser-monster */
@charset "utf-8";
body {
margin:0;
}
#mocha {
font: 20px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
margin: 60px 50px;
}
#mocha ul,
#mocha li {
margin: 0;
padding: 0;
}
#mocha ul {
list-style: none;
}
#mocha h1,
#mocha h2 {
margin: 0;
}
#mocha h1 {
margin-top: 15px;
font-size: 1em;
font-weight: 200;
}
#mocha h1 a {
text-decoration: none;
color: inherit;
}
#mocha h1 a:hover {
text-decoration: underline;
}
#mocha .suite .suite h1 {
margin-top: 0;
font-size: .8em;
}
#mocha .hidden {
display: none;
}
#mocha h2 {
font-size: 12px;
font-weight: normal;
cursor: pointer;
}
#mocha .suite {
margin-left: 15px;
}
#mocha .test {
margin-left: 15px;
overflow: hidden;
}
#mocha .test.pending:hover h2::after {
content: '(pending)';
font-family: arial, sans-serif;
}
#mocha .test.pass.medium .duration {
background: #c09853;
}
#mocha .test.pass.slow .duration {
background: #b94a48;
}
#mocha .test.pass::before {
content: '✓';
font-size: 12px;
display: block;
float: left;
margin-right: 5px;
color: #00d6b2;
}
#mocha .test.pass .duration {
font-size: 9px;
margin-left: 5px;
padding: 2px 5px;
color: #fff;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}
#mocha .test.pass.fast .duration {
display: none;
}
#mocha .test.pending {
color: #0b97c4;
}
#mocha .test.pending::before {
content: '◦';
color: #0b97c4;
}
#mocha .test.fail {
color: #c00;
}
#mocha .test.fail pre {
color: black;
}
#mocha .test.fail::before {
content: '✖';
font-size: 12px;
display: block;
float: left;
margin-right: 5px;
color: #c00;
}
#mocha .test pre.error {
color: #c00;
max-height: 300px;
overflow: auto;
}
#mocha .test .html-error {
overflow: auto;
color: black;
display: block;
float: left;
clear: left;
font: 12px/1.5 monaco, monospace;
margin: 5px;
padding: 15px;
border: 1px solid #eee;
max-width: 85%; /*(1)*/
max-width: -webkit-calc(100% - 42px);
max-width: -moz-calc(100% - 42px);
max-width: calc(100% - 42px); /*(2)*/
max-height: 300px;
word-wrap: break-word;
border-bottom-color: #ddd;
-webkit-box-shadow: 0 1px 3px #eee;
-moz-box-shadow: 0 1px 3px #eee;
box-shadow: 0 1px 3px #eee;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
#mocha .test .html-error pre.error {
border: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: 0;
-moz-box-shadow: 0;
box-shadow: 0;
padding: 0;
margin: 0;
margin-top: 18px;
max-height: none;
}
/**
* (1): approximate for browsers not supporting calc
* (2): 42 = 2*15 + 2*10 + 2*1 (padding + margin + border)
* ^^ seriously
*/
#mocha .test pre {
display: block;
float: left;
clear: left;
font: 12px/1.5 monaco, monospace;
margin: 5px;
padding: 15px;
border: 1px solid #eee;
max-width: 85%; /*(1)*/
max-width: -webkit-calc(100% - 42px);
max-width: -moz-calc(100% - 42px);
max-width: calc(100% - 42px); /*(2)*/
word-wrap: break-word;
border-bottom-color: #ddd;
-webkit-box-shadow: 0 1px 3px #eee;
-moz-box-shadow: 0 1px 3px #eee;
box-shadow: 0 1px 3px #eee;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
#mocha .test h2 {
position: relative;
}
#mocha .test a.replay {
position: absolute;
top: 3px;
right: 0;
text-decoration: none;
vertical-align: middle;
display: block;
width: 15px;
height: 15px;
line-height: 15px;
text-align: center;
background: #eee;
font-size: 15px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
-webkit-transition:opacity 200ms;
-moz-transition:opacity 200ms;
-o-transition:opacity 200ms;
transition: opacity 200ms;
opacity: 0.3;
color: #888;
}
#mocha .test:hover a.replay {
opacity: 1;
}
#mocha-report.pass .test.fail {
display: none;
}
#mocha-report.fail .test.pass {
display: none;
}
#mocha-report.pending .test.pass,
#mocha-report.pending .test.fail {
display: none;
}
#mocha-report.pending .test.pass.pending {
display: block;
}
#mocha-error {
color: #c00;
font-size: 1.5em;
font-weight: 100;
letter-spacing: 1px;
}
#mocha-stats {
position: fixed;
top: 15px;
right: 10px;
font-size: 12px;
margin: 0;
color: #888;
z-index: 1;
}
#mocha-stats .progress {
float: right;
padding-top: 0;
/**
* Set safe initial values, so mochas .progress does not inherit these
* properties from Bootstrap .progress (which causes .progress height to
* equal line height set in Bootstrap).
*/
height: auto;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
background-color: initial;
}
#mocha-stats em {
color: black;
}
#mocha-stats a {
text-decoration: none;
color: inherit;
}
#mocha-stats a:hover {
border-bottom: 1px solid #eee;
}
#mocha-stats li {
display: inline-block;
margin: 0 5px;
list-style: none;
padding-top: 11px;
}
#mocha-stats canvas {
width: 40px;
height: 40px;
}
#mocha code .comment { color: #ddd; }
#mocha code .init { color: #2f6fad; }
#mocha code .string { color: #5890ad; }
#mocha code .keyword { color: #8a6343; }
#mocha code .number { color: #2f6fad; }
@media screen and (max-device-width: 480px) {
#mocha {
margin: 60px 0px;
}
#mocha #stats {
position: absolute;
}
}
This diff is collapsed.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Mocha %%NAME%%</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="mocha.css"/>
</head>
<body>
<div id="mocha"></div>
<script src="mocha.js"></script>
<script>
mocha.setup('bdd');
</script>
<script src="tests.js"></script>
<script>
mocha.run();
</script>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment