@daiyam/artifact-lang-js 0.11.0 → 0.11.1
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/.artifactrc.yml +0 -16
- package/package.json +2 -2
- package/variants/20/.artifactrc.yml +16 -0
package/.artifactrc.yml
CHANGED
|
@@ -1,20 +1,4 @@
|
|
|
1
1
|
$schema: https://raw.githubusercontent.com/zokugun/artifact/v0.6.0/schemas/v1/package.json
|
|
2
2
|
|
|
3
|
-
always:
|
|
4
|
-
.czrc:
|
|
5
|
-
if_exists: remove
|
|
6
|
-
|
|
7
|
-
package.json:
|
|
8
|
-
transforms:
|
|
9
|
-
- description: Remove scripts.commit only when it clearly invokes Commitizen
|
|
10
|
-
jq: |
|
|
11
|
-
if ((.scripts.commit? // "") | test("cz")) then
|
|
12
|
-
del(.scripts.commit)
|
|
13
|
-
else
|
|
14
|
-
.
|
|
15
|
-
end
|
|
16
|
-
- description: Remove commitizen from devDependencies
|
|
17
|
-
jq: 'del(.devDependencies.commitizen)'
|
|
18
|
-
|
|
19
3
|
variants:
|
|
20
4
|
root: 20
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daiyam/artifact-lang-js",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"description": "The base configuration for my javascript projects",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Baptiste Augrain",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"project-template",
|
|
32
32
|
"scaffold"
|
|
33
33
|
],
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "8470346d2f93de303689d5c4e8148ef003b6c555"
|
|
35
35
|
}
|
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
$schema: https://raw.githubusercontent.com/zokugun/artifact/v0.6.0/schemas/v1/package.json
|
|
2
2
|
|
|
3
|
+
always:
|
|
4
|
+
.czrc:
|
|
5
|
+
if_exists: remove
|
|
6
|
+
|
|
7
|
+
package.json:
|
|
8
|
+
transforms:
|
|
9
|
+
- description: Remove scripts.commit only when it clearly invokes Commitizen
|
|
10
|
+
jq: |
|
|
11
|
+
if ((.scripts.commit? // "") | test("cz")) then
|
|
12
|
+
del(.scripts.commit)
|
|
13
|
+
else
|
|
14
|
+
.
|
|
15
|
+
end
|
|
16
|
+
- description: Remove commitizen from devDependencies
|
|
17
|
+
jq: 'del(.devDependencies.commitizen)'
|
|
18
|
+
|
|
3
19
|
upsert:
|
|
4
20
|
.github/**/*.yml:
|
|
5
21
|
if_exists: overwrite
|