@toptal/davinci-bootstrap 3.3.5 → 3.3.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-bootstrap",
3
- "version": "3.3.5",
3
+ "version": "3.3.6",
4
4
  "description": "Creates application from davinci template",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -34,8 +34,8 @@
34
34
  "url": "https://github.com/toptal/davinci/issues"
35
35
  },
36
36
  "dependencies": {
37
- "@toptal/davinci-cli-shared": "1.5.4",
38
- "@toptal/davinci-skeleton": "7.5.2",
37
+ "@toptal/davinci-cli-shared": "1.6.0",
38
+ "@toptal/davinci-skeleton": "8.0.0",
39
39
  "@toptal/davinci-skeleton-lib": "0.1.1",
40
40
  "@toptal/davinci-skeleton-sub-app": "1.2.0",
41
41
  "find-yarn-workspace-root": "^2.0.0",
@@ -6,7 +6,7 @@ const {
6
6
  CHANGELOG_PATTERN,
7
7
  GITHUB_SKELETON_PATTERN,
8
8
  GITHUB_PATH,
9
- CODEBASE_SPECIFIC_WORKFLOWS_PATH
9
+ CODEBASE_SPECIFIC_WORKFLOWS_PATH,
10
10
  } = require('../constants')
11
11
 
12
12
  const readPackageJson = folder => {
@@ -44,8 +44,8 @@ const copyTemplateGitIgnoreFile = async folder => {
44
44
  }
45
45
 
46
46
  const copyTemplateEslintrc = async folder => {
47
- const eslintrcFile = path.join(folder, '.eslintrc')
48
- const eslintrcSkeletonFile = path.join(folder, '.eslintrc.skeleton')
47
+ const eslintrcFile = path.join(folder, '.eslintrc.js')
48
+ const eslintrcSkeletonFile = path.join(folder, '.eslintrc.js.skeleton')
49
49
 
50
50
  if (fs.existsSync(eslintrcSkeletonFile)) {
51
51
  await fs.rename(eslintrcSkeletonFile, eslintrcFile)