Skip to content
This repository has been archived by the owner on Sep 23, 2023. It is now read-only.

Commit

Permalink
Change double quotes to single quotes in template
Browse files Browse the repository at this point in the history
  • Loading branch information
Silind committed Apr 13, 2020
1 parent e5fc617 commit dda3950
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ npm run update-version <new-version>
```

### Create the PR
Create a branch for your changes called 'feature/name-of-the-changes'.
Make a PR into the 'development' branch on the direflow repository.
Create a branch for your changes called '_feature/name-of-the-changes_'.
Make a PR into the **development** branch on the direflow repository.

## Updating the docs
If you introduced user-facing changes, please update the [direflow-docs](https://github.com/Silind-Software/direflow-docs) accordingly.
Expand Down
2 changes: 1 addition & 1 deletion templates/js/src/component-exports.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* this file can be safely deleted.
*/

import App from "./direflow-components/{{names.snake}}/App";
import App from './direflow-components/{{names.snake}}/App';

export {
App
Expand Down
2 changes: 1 addition & 1 deletion templates/js/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* It can be left blank if not needed.
*/

import {{names.pascal}} from "./direflow-components/{{names.snake}}";
import {{names.pascal}} from './direflow-components/{{names.snake}}';

{{names.pascal}}.then((element) => {

Expand Down
2 changes: 1 addition & 1 deletion templates/ts/src/component-exports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* this file can be safely deleted.
*/

import App from "./direflow-components/{{names.snake}}/App";
import App from './direflow-components/{{names.snake}}/App';

export {
App
Expand Down
2 changes: 1 addition & 1 deletion templates/ts/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* It can be left blank if not needed.
*/

import {{names.pascal}} from "./direflow-components/{{names.snake}}";
import {{names.pascal}} from './direflow-components/{{names.snake}}';

{{names.pascal}}.then((element) => {

Expand Down

0 comments on commit dda3950

Please sign in to comment.