takomo 3.40.2 → 4.0.0-alpha.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.
Files changed (3) hide show
  1. package/LICENSE +1 -1
  2. package/bin/tkm +1 -1
  3. package/package.json +4 -4
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021 Henri Meltaus <henri@takomo.io>
3
+ Copyright (c) 2022 Henri Meltaus <henri@takomo.io>
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/bin/tkm CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  var semver = require("semver")
3
- var requiredVersion = "14.4.0"
3
+ var requiredVersion = "14.17.1"
4
4
  if (!semver.satisfies(process.version, ">=" + requiredVersion)) {
5
5
  console.log("ERROR")
6
6
  console.log("-----")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "takomo",
3
- "version": "3.40.2",
3
+ "version": "4.0.0-alpha.0",
4
4
  "description": "Organize, configure and deploy CloudFormation stacks. Manage AWS organization.",
5
5
  "keywords": [
6
6
  "aws",
@@ -42,12 +42,12 @@
42
42
  "watch": "tsc -p tsconfig.build.json --watch"
43
43
  },
44
44
  "dependencies": {
45
- "@takomo/cli": "3.40.2",
45
+ "@takomo/cli": "4.0.0-alpha.0",
46
46
  "semver": "7.3.5",
47
47
  "source-map-support": "0.5.21"
48
48
  },
49
49
  "engines": {
50
- "node": ">=14.4.0"
50
+ "node": ">=14.17.1"
51
51
  },
52
52
  "os": [
53
53
  "darwin",
@@ -56,5 +56,5 @@
56
56
  "publishConfig": {
57
57
  "access": "public"
58
58
  },
59
- "gitHead": "fcf00558802c79fa983f2d663a3c471f51ad12c9"
59
+ "gitHead": "3ff558123de0eedcddd75940495ff3a7ace26adc"
60
60
  }