-
Notifications
You must be signed in to change notification settings - Fork 915
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Templates: Adding descriptions to package.json, making config files c…
…onsistant (#1346) * adding descriptions, making config files consistant * reordering keys in templates, adding comment about 11ty
- Loading branch information
Melissa McEwen
authored
Oct 18, 2020
1 parent
5b0866b
commit 7d6e9fd
Showing
32 changed files
with
286 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
module.exports = { | ||
mount: { | ||
_output: '/', | ||
src: '/_dist_', | ||
}, | ||
plugins: [ | ||
['@snowpack/plugin-run-script', { cmd: 'eleventy', watch: '$1 --watch' }], | ||
], | ||
install: [ | ||
/* ... */ | ||
], | ||
installOptions: { | ||
/* ... */ | ||
}, | ||
devOptions: { | ||
// Eleventy updates multiple files at once, so add a 300ms delay before we trigger a browser update | ||
hmrDelay: 300, | ||
}, | ||
buildOptions: { | ||
/* ... */ | ||
}, | ||
proxy: { | ||
/* ... */ | ||
}, | ||
alias: { | ||
/* ... */ | ||
}, | ||
}; |
15 changes: 0 additions & 15 deletions
15
create-snowpack-app/app-template-11ty/snowpack.config.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
create-snowpack-app/app-template-blank-typescript/snowpack.config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
module.exports = { | ||
mount: { | ||
public: '/', | ||
src: '/_dist_', | ||
}, | ||
plugins: ['@snowpack/plugin-typescript'], | ||
install: [ | ||
/* ... */ | ||
], | ||
installOptions: { | ||
installTypes: true, | ||
}, | ||
devOptions: { | ||
/* ... */ | ||
}, | ||
buildOptions: { | ||
/* ... */ | ||
}, | ||
proxy: { | ||
/* ... */ | ||
}, | ||
alias: { | ||
/* ... */ | ||
}, | ||
}; |
10 changes: 0 additions & 10 deletions
10
create-snowpack-app/app-template-blank-typescript/snowpack.config.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
module.exports = { | ||
mount: { | ||
public: '/', | ||
src: '/_dist_', | ||
}, | ||
plugins: [ | ||
/* ... */ | ||
], | ||
install: [ | ||
/* ... */ | ||
], | ||
installOptions: { | ||
/* ... */ | ||
}, | ||
devOptions: { | ||
/* ... */ | ||
}, | ||
buildOptions: { | ||
/* ... */ | ||
}, | ||
proxy: { | ||
/* ... */ | ||
}, | ||
alias: { | ||
/* ... */ | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
create-snowpack-app/app-template-lit-element-typescript/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
create-snowpack-app/app-template-preact-typescript/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
create-snowpack-app/app-template-svelte-typescript/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
7d6e9fd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs: