@toptal/davinci-code 1.6.6-alpha-fx-3195-use-decorators-package-d19b4bbf.99 → 1.7.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 +9 -0
- package/dist-package/package.json +38 -0
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1744](https://github.com/toptal/davinci/pull/1744) [`2d1ac403`](https://github.com/toptal/davinci/commit/2d1ac403779752a3383eb649aee50af9de1589c6) Thanks [@ozgurkececioglu](https://github.com/ozgurkececioglu)! - ---
|
|
8
|
+
|
|
9
|
+
- update `davinci-code stories` command to inject PicassoDecorator if needed
|
|
10
|
+
- update `davinci-code new component` command to inject PicassoDecorator if needed
|
|
11
|
+
|
|
3
12
|
## 1.6.5
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@toptal/davinci-code",
|
|
3
|
+
"version": "1.7.0",
|
|
4
|
+
"description": "Code generation package for frontend applications",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"keywords": [
|
|
9
|
+
"code",
|
|
10
|
+
"templates",
|
|
11
|
+
"generator"
|
|
12
|
+
],
|
|
13
|
+
"author": "Toptal",
|
|
14
|
+
"homepage": "https://github.com/toptal/davinci/tree/master/packages/code#readme",
|
|
15
|
+
"license": "ISC",
|
|
16
|
+
"bin": {
|
|
17
|
+
"davinci-code": "./bin/davinci-code.js"
|
|
18
|
+
},
|
|
19
|
+
"main": "./src/index.js",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/toptal/davinci.git"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build:package": "../../bin/build-package.js",
|
|
26
|
+
"prepublishOnly": "../../bin/prepublish.js",
|
|
27
|
+
"test": "echo \"Error: run tests from root\" && exit 1"
|
|
28
|
+
},
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/toptal/davinci/issues"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@toptal/davinci-cli-shared": "1.8.1",
|
|
34
|
+
"hygen": "^6.2.11",
|
|
35
|
+
"lodash.camelcase": "^4.3.0",
|
|
36
|
+
"lodash.kebabcase": "^4.1.1"
|
|
37
|
+
}
|
|
38
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci-code",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "Code generation package for frontend applications",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -30,10 +30,9 @@
|
|
|
30
30
|
"url": "https://github.com/toptal/davinci/issues"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@toptal/davinci-cli-shared": "1.8.
|
|
33
|
+
"@toptal/davinci-cli-shared": "1.8.1",
|
|
34
34
|
"hygen": "^6.2.11",
|
|
35
35
|
"lodash.camelcase": "^4.3.0",
|
|
36
36
|
"lodash.kebabcase": "^4.1.1"
|
|
37
|
-
}
|
|
38
|
-
"gitHead": "d19b4bbfe0479f335e1286bc76be321703dcc00c"
|
|
37
|
+
}
|
|
39
38
|
}
|