eser 0.1.5 → 0.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/commands/codebase/mod.ts +411 -0
- package/deno.json +10 -0
- package/main.ts +78 -0
- package/package.json +10 -46
- package/package.json.template +16 -0
- package/scripts/npm-publish-prepare.ts +123 -0
- package/scripts/npm-publish-revert.ts +30 -0
- package/.csscomb.json +0 -333
- package/.eslintrc.json +0 -295
- package/LICENSE +0 -14
- package/README.md +0 -59
- package/bin/eser +0 -5
- package/lib/cli.js +0 -37
- package/lib/index.js +0 -9
package/README.md
DELETED
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
# [eser](https://github.com/eserozvataf/eser)
|
|
2
|
-
|
|
3
|
-
[![npm version][npm-image]][npm-url]
|
|
4
|
-
[![npm download][download-image]][npm-url]
|
|
5
|
-
[![dependencies][dep-image]][dep-url]
|
|
6
|
-
[![license][license-image]][license-url]
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
## What is the eser?
|
|
10
|
-
|
|
11
|
-
This repository consists of my own coding standard and guidelines. You can fork and modify it to have yours or use it as it is.
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
## Quick Start
|
|
15
|
-
|
|
16
|
-
To Install Globally:
|
|
17
|
-
`npm install eser -g`
|
|
18
|
-
|
|
19
|
-
To validate:
|
|
20
|
-
`eser ./src/**`
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
## Todo List
|
|
24
|
-
|
|
25
|
-
See [GitHub Projects](https://github.com/eserozvataf/eser/projects) for more.
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
## Requirements
|
|
29
|
-
|
|
30
|
-
* node.js (https://nodejs.org/)
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
## License
|
|
34
|
-
|
|
35
|
-
Apache 2.0, for further details, please see [LICENSE](LICENSE) file
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
## Contributing
|
|
39
|
-
|
|
40
|
-
See [contributors.md](contributors.md)
|
|
41
|
-
|
|
42
|
-
It is publicly open for any contribution. Bugfixes, new features and extra modules are welcome.
|
|
43
|
-
|
|
44
|
-
* To contribute to code: Fork the repo, push your changes to your fork, and submit a pull request.
|
|
45
|
-
* To report a bug: If something does not work, please report it using [GitHub Issues](https://github.com/eserozvataf/eser/issues).
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
## To Support
|
|
49
|
-
|
|
50
|
-
[Visit my patreon profile at patreon.com/eserozvataf](https://www.patreon.com/eserozvataf)
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
[npm-image]: https://img.shields.io/npm/v/eser.svg?style=flat-square
|
|
54
|
-
[npm-url]: https://www.npmjs.com/package/eser
|
|
55
|
-
[download-image]: https://img.shields.io/npm/dt/eser.svg?style=flat-square
|
|
56
|
-
[dep-image]: https://img.shields.io/david/eserozvataf/eser.svg?style=flat-square
|
|
57
|
-
[dep-url]: https://github.com/eserozvataf/eser
|
|
58
|
-
[license-image]: https://img.shields.io/npm/l/eser.svg?style=flat-square
|
|
59
|
-
[license-url]: https://github.com/eserozvataf/eser/blob/master/LICENSE
|
package/bin/eser
DELETED
package/lib/cli.js
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* eser
|
|
3
|
-
*
|
|
4
|
-
* @version v0.0.1
|
|
5
|
-
* @link http://eser.ozvataf.com
|
|
6
|
-
*/
|
|
7
|
-
'use strict';
|
|
8
|
-
|
|
9
|
-
var _path = require('path');
|
|
10
|
-
|
|
11
|
-
var _path2 = _interopRequireDefault(_path);
|
|
12
|
-
|
|
13
|
-
var _standardEngine = require('standard-engine');
|
|
14
|
-
|
|
15
|
-
var _standardEngine2 = _interopRequireDefault(_standardEngine);
|
|
16
|
-
|
|
17
|
-
var _eslint = require('eslint');
|
|
18
|
-
|
|
19
|
-
var _eslint2 = _interopRequireDefault(_eslint);
|
|
20
|
-
|
|
21
|
-
var _package = require('../package.json');
|
|
22
|
-
|
|
23
|
-
var _package2 = _interopRequireDefault(_package);
|
|
24
|
-
|
|
25
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
26
|
-
|
|
27
|
-
_standardEngine2.default.cli({
|
|
28
|
-
bugs: _package2.default.bugs.url,
|
|
29
|
-
cmd: 'eser',
|
|
30
|
-
eslint: _eslint2.default,
|
|
31
|
-
eslintConfig: {
|
|
32
|
-
configFile: _path2.default.join(__dirname, '..', '.eslintrc.json')
|
|
33
|
-
},
|
|
34
|
-
homepage: _package2.default.homepage,
|
|
35
|
-
tagline: _package2.default.description,
|
|
36
|
-
version: _package2.default.version
|
|
37
|
-
});
|