metapak-nfroidure 12.2.0 → 12.3.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.
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
exports[`Package transformer for jsdocs should work with an empty package.json 1`] = `
|
|
4
4
|
{
|
|
5
5
|
"devDependencies": {
|
|
6
|
-
"jsarch": "^
|
|
6
|
+
"jsarch": "^6.0.0",
|
|
7
7
|
},
|
|
8
8
|
"greenkeeper": {
|
|
9
9
|
"ignore": [
|
|
@@ -26,7 +26,7 @@ exports[`Package transformer for jsdocs should work with an empty package.json 1
|
|
|
26
26
|
exports[`Package transformer for jsdocs should work with child package 1`] = `
|
|
27
27
|
{
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"jsarch": "^
|
|
29
|
+
"jsarch": "^6.0.0",
|
|
30
30
|
},
|
|
31
31
|
"greenkeeper": {
|
|
32
32
|
"ignore": [],
|
|
@@ -46,7 +46,7 @@ exports[`Package transformer for jsdocs should work with child package 1`] = `
|
|
|
46
46
|
exports[`Package transformer for jsdocs should work with typescrit configs 1`] = `
|
|
47
47
|
{
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"jsarch": "^
|
|
49
|
+
"jsarch": "^6.0.0",
|
|
50
50
|
},
|
|
51
51
|
"greenkeeper": {
|
|
52
52
|
"ignore": [],
|
package/src/jsarch/package.js
CHANGED
|
@@ -37,7 +37,7 @@ module.exports = (packageConf) => {
|
|
|
37
37
|
|
|
38
38
|
// Add jsarch dep
|
|
39
39
|
packageConf.devDependencies = packageConf.devDependencies || {};
|
|
40
|
-
packageConf.devDependencies.jsarch = '^
|
|
40
|
+
packageConf.devDependencies.jsarch = '^6.0.0';
|
|
41
41
|
|
|
42
42
|
// Avoid GreenKeeper to update automatically added modules
|
|
43
43
|
if ('metapak-nfroidure' !== packageConf.name && !data.childPackage) {
|