Skip to content

Commit 75ca7dd

Browse files
committed
chore: remove bundles from dist folder
1 parent 4133251 commit 75ca7dd

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ apps/todo-app-bundle.umd.js
55
apps/todo-app-bundle.umd.js.map
66
dist
77
cypress/screenshots/
8+
bundles

cypress/integration/todo-app-e2e.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ describe('Todo App E2E', () => {
1717
// instead of loading individusl components
1818
// we are just visiting a page - we assume the
1919
// application has been bundled, loaded and initialized
20-
cy.visit('dist/todo/todo.html')
20+
cy.visit('bundles/todo/todo.html')
2121
})
2222

2323
it('loads Todo app', () => {

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@
5757
"transpile": "tsc",
5858
"prebuild": "npm run transpile",
5959
"build": "npm run build:todo-app",
60-
"build:todo-app": "parcel build apps/todo.html -d dist/todo --public-url ./"
60+
"build:todo-app":
61+
"parcel build apps/todo.html -d bundles/todo --public-url ./"
6162
},
6263
"release": {
6364
"analyzeCommits": "simple-commit-message",

0 commit comments

Comments
 (0)