chore: Merge branch 'jl-stackblitz-publish' into stackblitz

This commit is contained in:
Josh Larson 2021-11-10 10:44:59 -06:00
commit c3ca6a4953
3 changed files with 6 additions and 2 deletions

View file

@ -13,7 +13,7 @@ jobs:
uses: actions/checkout@v2
- name: Rename gitignore
run: |
mv _gitignore .gitignore
mv packages/dev/_gitignore packages/dev/.gitignore
- name: Push to stackblitz branch
uses: EndBug/add-and-commit@v7.4.0
with:

View file

@ -12,7 +12,7 @@ const {copy} = require('./utils');
const devPath = path.resolve(__dirname, '..', '..', 'dev');
const templatePath = path.resolve(__dirname, '..', './template-hydrogen');
const skipFiles = ['node_modules', 'dist'];
const skipFiles = ['node_modules', 'dist', '.stackblitzrc'];
// Remove the symlink and replace it with a folder
fs.unlinkSync(templatePath);

View file

@ -0,0 +1,4 @@
{
"installDependencies": true,
"startCommand": "npm run dev"
}