Skip to content

Commit 4f8a548

Browse files
committed
Fix file endings
1 parent fa4ae97 commit 4f8a548

File tree

6 files changed

+1
-1
lines changed

6 files changed

+1
-1
lines changed

packages/cycle-scripts/scripts/init/setup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module.exports = function setup (appPath, appName, options) {
1515

1616
// STEP #1 - Create boilerplate files
1717
const flavorPath = path.join(appPath, 'node_modules', 'cycle-scripts')
18-
const templateStrings = require(path.join(flavorPath, 'template/config', language, 'flavor.js'))
18+
const templateStrings = require(path.join(flavorPath, 'template/config', language, 'flavor.js')).replacements
1919
const templatePath = path.join(flavorPath, 'template/src', language)
2020
// Create ./public directory
2121
fs.ensureDirSync(path.join(appPath, 'public'))

packages/cycle-scripts/template/src/JavaScript/app.js renamed to packages/cycle-scripts/template/src/JavaScript/app.jsx

File renamed without changes.

packages/cycle-scripts/template/src/Typescript/app.test.js renamed to packages/cycle-scripts/template/src/Typescript/app.test.ts

File renamed without changes.

packages/cycle-scripts/template/src/Typescript/app.js renamed to packages/cycle-scripts/template/src/Typescript/app.tsx

File renamed without changes.

packages/cycle-scripts/template/src/Typescript/index.js renamed to packages/cycle-scripts/template/src/Typescript/index.ts

File renamed without changes.

packages/cycle-scripts/template/src/Typescript/interfaces.js renamed to packages/cycle-scripts/template/src/Typescript/interfaces.ts

File renamed without changes.

0 commit comments

Comments
 (0)