@toptal/davinci-bootstrap 3.6.1-alpha-fix-wrong-data-structure-in-analytics-e998b099.2 → 3.6.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/CHANGELOG.md +2143 -0
- package/docs/new-app.md +22 -0
- package/docs/new-lib.md +21 -0
- package/docs/new.md +15 -0
- package/package.json +9 -10
package/docs/new-app.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Creates new monorepo application
|
|
2
|
+
|
|
3
|
+
```bash
|
|
4
|
+
davinci-boostrap new-app <app name>
|
|
5
|
+
```
|
|
6
|
+
|
|
7
|
+
Creates a new monorepo application according to Toptal guidelines in the
|
|
8
|
+
directory `/apps/${app-name}` or in
|
|
9
|
+
`/namespaces/${namespace-name}/apps/${app-name}` if `namespace-name` is
|
|
10
|
+
specified.
|
|
11
|
+
|
|
12
|
+
Arguments:
|
|
13
|
+
|
|
14
|
+
- `app-name`:
|
|
15
|
+
|
|
16
|
+
The name of the application
|
|
17
|
+
|
|
18
|
+
- `--namespace <namespace-name>`:
|
|
19
|
+
|
|
20
|
+
Namespace name. By default, `namespace-name` is empty, this will create
|
|
21
|
+
application in the root `/apps` folder. If `namespace-name` is specified - in
|
|
22
|
+
`/namespaces/${namespace-name}/apps` folder.
|
package/docs/new-lib.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Creates new monorepo library
|
|
2
|
+
|
|
3
|
+
Creates a new monorepo library according to Toptal guidelines in the directory
|
|
4
|
+
`/libs/${lib-name}` or in `/namespaces/${namespace-name}/libs/${lib-name}` if
|
|
5
|
+
`namespace-name` is specified.
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
davinci-boostrap new-lib <lib-name>
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Arguments:
|
|
12
|
+
|
|
13
|
+
- `lib-name`:
|
|
14
|
+
|
|
15
|
+
The name of the library
|
|
16
|
+
|
|
17
|
+
- `--namespace <namespace-name>`:
|
|
18
|
+
|
|
19
|
+
Namespace name. By default, `namespace-name` is empty, this will create
|
|
20
|
+
library in the root `/libs` folder. If `namespace-name` is specified - in
|
|
21
|
+
`/namespaces/${namespace-name}/libs` folder.
|
package/docs/new.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Creates new SPA application
|
|
2
|
+
|
|
3
|
+
```bash
|
|
4
|
+
davinci-bootstrap new <app name>
|
|
5
|
+
```
|
|
6
|
+
|
|
7
|
+
Creates a new app according to Toptal guidelines in directory `app-name` and
|
|
8
|
+
installs all dependencies (including `davinci` and `picasso`). Prepares app so
|
|
9
|
+
you can just run `yarn start` and application will open in browser.
|
|
10
|
+
|
|
11
|
+
Arguments:
|
|
12
|
+
|
|
13
|
+
- `app-name`:
|
|
14
|
+
|
|
15
|
+
The name of the application
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci-bootstrap",
|
|
3
|
-
"version": "3.6.1
|
|
3
|
+
"version": "3.6.1",
|
|
4
4
|
"description": "Creates application from davinci template",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -19,30 +19,29 @@
|
|
|
19
19
|
},
|
|
20
20
|
"files": [
|
|
21
21
|
"bin",
|
|
22
|
-
"src"
|
|
22
|
+
"src",
|
|
23
|
+
"docs",
|
|
24
|
+
"CHANGELOG.md"
|
|
23
25
|
],
|
|
24
26
|
"repository": {
|
|
25
27
|
"type": "git",
|
|
26
28
|
"url": "git+https://github.com/toptal/davinci.git"
|
|
27
29
|
},
|
|
28
30
|
"scripts": {
|
|
29
|
-
"build:package": "../../bin/build-package.js",
|
|
30
|
-
"prepublishOnly": "../../bin/prepublish.js",
|
|
31
31
|
"test": "echo \"Error: run tests from root\" && exit 1"
|
|
32
32
|
},
|
|
33
33
|
"bugs": {
|
|
34
34
|
"url": "https://github.com/toptal/davinci/issues"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@toptal/davinci-cli-shared": "1.10.2
|
|
38
|
-
"@toptal/davinci-skeleton": "10.0.
|
|
39
|
-
"@toptal/davinci-skeleton-lib": "0.2.
|
|
40
|
-
"@toptal/davinci-skeleton-sub-app": "1.3.
|
|
37
|
+
"@toptal/davinci-cli-shared": "1.10.2",
|
|
38
|
+
"@toptal/davinci-skeleton": "10.0.0",
|
|
39
|
+
"@toptal/davinci-skeleton-lib": "0.2.0",
|
|
40
|
+
"@toptal/davinci-skeleton-sub-app": "1.3.0",
|
|
41
41
|
"execa": "^5.1.1",
|
|
42
42
|
"find-yarn-workspace-root": "^2.0.0",
|
|
43
43
|
"fs-extra": "^9.0.1",
|
|
44
44
|
"lodash.kebabcase": "^4.1.1",
|
|
45
45
|
"ora": "^5.4.1"
|
|
46
|
-
}
|
|
47
|
-
"gitHead": "e998b09949b7b22fd1305544729bb6665fcfe092"
|
|
46
|
+
}
|
|
48
47
|
}
|