@daiyam/artifact-lang-js 0.6.0

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.
@@ -0,0 +1,5 @@
1
+ update:
2
+ package.json:
3
+ filter:
4
+ - scripts
5
+ - devDependencies
package/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2021-present Baptiste Augrain
2
+
3
+ Permission is hereby granted, free of charge, to any person
4
+ obtaining a copy of this software and associated documentation
5
+ files (the "Software"), to deal in the Software without
6
+ restriction, including without limitation the rights to use,
7
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the
9
+ Software is furnished to do so, subject to the following
10
+ conditions:
11
+
12
+ The above copyright notice and this permission notice shall be
13
+ included in all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,33 @@
1
+ [@daiyam/artifact-lang-js](https://github.com/daiyam/artifact-configs/tree/master/packages/lang-js)
2
+ ===================================================================================================
3
+
4
+ [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
5
+ [![NPM Version](https://img.shields.io/npm/v/@daiyam/artifact-lang-js.svg?colorB=green)](https://www.npmjs.com/package/@daiyam/artifact-lang-js)
6
+
7
+ The base configuration for my javascript projects.
8
+
9
+ Getting Started
10
+ ---------------
11
+
12
+ ```sh
13
+ mkdir myproject
14
+ cd myproject
15
+ npm init -y
16
+ artifact add @daiyam/lang-js
17
+ ```
18
+
19
+ Dependencies
20
+ ------------
21
+
22
+ - [commitlint](https://github.com/conventional-changelog/commitlint)
23
+ - [commitizen](https://github.com/commitizen/cz-cli)
24
+ - [fixpack](https://github.com/henrikjoreteg/fixpack)
25
+ - [husky](https://github.com/typicode/husky)
26
+ - [lint-staged](https://github.com/okonet/lint-staged)
27
+
28
+ License
29
+ -------
30
+
31
+ Copyright © 2021-present Baptiste Augrain
32
+
33
+ Licensed under the [MIT license](https://opensource.org/licenses/MIT).
@@ -0,0 +1,19 @@
1
+ extends:
2
+ - "@commitlint/config-conventional"
3
+ rules:
4
+ type-enum:
5
+ - 2
6
+ - always
7
+ -
8
+ - build
9
+ - ci
10
+ - docs
11
+ - enhance
12
+ - feat
13
+ - fix
14
+ - perf
15
+ - refactor
16
+ - revert
17
+ - style
18
+ - test
19
+ - vcs
package/configs/.czrc ADDED
@@ -0,0 +1,3 @@
1
+ {
2
+ "path": "cz-conventional-changelog"
3
+ }
@@ -0,0 +1,17 @@
1
+ root = true
2
+
3
+ [*]
4
+ indent_style = tab
5
+ tab_width = 4
6
+ end_of_line = lf
7
+ charset = utf-8
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
10
+
11
+ [{*.yml,*.yaml}]
12
+ indent_style = space
13
+ indent_size = 2
14
+
15
+ [*.md]
16
+ indent_style = space
17
+ indent_size = 4
@@ -0,0 +1,25 @@
1
+ {
2
+ "sortToTop": [
3
+ "name",
4
+ "displayName",
5
+ "description",
6
+ "version",
7
+ "private",
8
+ "author",
9
+ "publisher",
10
+ "license",
11
+ "homepage",
12
+ "repository",
13
+ "bugs",
14
+ "engines",
15
+ "bin",
16
+ "main",
17
+ "types",
18
+ "scripts",
19
+ "dependencies",
20
+ "devDependencies",
21
+ "optionalDependencies",
22
+ "keywords"
23
+ ],
24
+ "finalNewLine": true
25
+ }
@@ -0,0 +1,3 @@
1
+ #!/bin/sh
2
+
3
+ npx commitlint --edit "$1"
@@ -0,0 +1 @@
1
+ _
@@ -0,0 +1,3 @@
1
+ #!/bin/sh
2
+
3
+ npx lint-staged
@@ -0,0 +1,3 @@
1
+ {
2
+ "package.json": "fixpack"
3
+ }
package/configs/.nvmrc ADDED
@@ -0,0 +1 @@
1
+ v20.18.3
@@ -0,0 +1,5 @@
1
+ {
2
+ "taskExplorer.exclude": [
3
+ ".husky",
4
+ ],
5
+ }
@@ -0,0 +1 @@
1
+ node_modules
@@ -0,0 +1,16 @@
1
+ {
2
+ "scripts": {
3
+ "commit": "cz",
4
+ "prepare": "husky; fixpack || true"
5
+ },
6
+ "dependencies": {},
7
+ "devDependencies": {
8
+ "@commitlint/cli": "^19.7.1",
9
+ "@commitlint/config-conventional": "^19.7.1",
10
+ "commitizen": "^4.3.1",
11
+ "fixpack": "^4.0.0",
12
+ "husky": "^9.1.7",
13
+ "lint-staged": "^15.4.3"
14
+ },
15
+ "keywords": []
16
+ }
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "@daiyam/artifact-lang-js",
3
+ "version": "0.6.0",
4
+ "description": "The base configuration for my javascript projects",
5
+ "author": {
6
+ "name": "Baptiste Augrain",
7
+ "email": "daiyam@zokugun.org"
8
+ },
9
+ "license": "MIT",
10
+ "homepage": "https://github.com/daiyam/artifact-configs/tree/master/packages/lang-js",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/daiyam/artifact-configs.git"
14
+ },
15
+ "bugs": {
16
+ "url": "https://github.com/daiyam/artifact-configs/issues"
17
+ },
18
+ "keywords": [
19
+ "artifact",
20
+ "boilerplate",
21
+ "boilerplates",
22
+ "codegeneration",
23
+ "codemod",
24
+ "codemods",
25
+ "configuration",
26
+ "configurations",
27
+ "generate",
28
+ "generator",
29
+ "project-generator",
30
+ "project-starter",
31
+ "project-template",
32
+ "scaffold"
33
+ ],
34
+ "gitHead": "c73c92c82234f1f1e6c94ef2abd076feab0b8169"
35
+ }