Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introducing Vite 🚀 #1428

Closed
wants to merge 46 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
ca4c10b
FOUR-6840 Indenting and sorting the vue.config.js file
josechirivella Oct 12, 2022
47025b7
Merge branch 'FOUR-6721' into FOUR-6840
josechirivella Oct 14, 2022
67c6fd8
Merge branch 'develop' into FOUR-6840
josechirivella Jan 16, 2023
1ec04c1
FOUR-6840 Added vite
josechirivella Jan 18, 2023
efeadb1
FOUR-6840 Fixing correct import for ValidationMixin
josechirivella Jan 25, 2023
daeaabb
FOUR-6840 Removed the manual import of the VFE css file since we are …
josechirivella Jan 31, 2023
711b85b
FOUR-6840 Downgraded vue-monaco to the version that we have on develo…
josechirivella Jan 31, 2023
40b2013
FOUR-6840 Commenting out code-coverage for cypress
josechirivella Feb 1, 2023
6ca3d9b
Merge branch 'develop' into vite
josechirivella Feb 1, 2023
f9959f9
Merge remote-tracking branch 'origin/develop' into vite
josechirivella Jun 21, 2023
3282514
Updated package-lock.json
josechirivella Jun 21, 2023
887105f
Removing VFE css import
josechirivella Jun 21, 2023
dfd8e49
Updated axios-extensions and lru-cache
josechirivella Aug 9, 2023
4865a33
Upgrading lru-cache and axios-extensions and fixing a problem when im…
josechirivella Aug 12, 2023
733554f
Using Object.assign to set the Validation rules
josechirivella Aug 12, 2023
1e03f2f
Importing the lru-cache correct import
josechirivella Aug 15, 2023
63e1ce2
Importing the VFE css back and exporting our correct css rules too wi…
josechirivella Aug 15, 2023
686df96
Merge remote-tracking branch 'origin/next' into vite
josechirivella Aug 15, 2023
f17dfbb
Updated package-lock.json
josechirivella Aug 15, 2023
d7b36d4
Targeting the STM workflow branch
josechirivella Aug 15, 2023
4a44f83
Removing imports from css, this is the correct way to export the css …
josechirivella Aug 16, 2023
7389870
Cleaning and adding more external deps
josechirivella Aug 16, 2023
f7d796c
Removing the external deps for processmaker and Object.assigning the …
josechirivella Aug 18, 2023
d8d6f65
Added type:module to package.json and removed sourcemaps
josechirivella Aug 23, 2023
9fe4d85
Added index.js for multiple locations to be exported
josechirivella Aug 23, 2023
cfd74a6
Added index for the folder editor
josechirivella Aug 23, 2023
a8e2f5f
Commented out the FormMultiColumn due to issues when importing as ren…
josechirivella Aug 29, 2023
75807e9
Removed Object.assign and updated validatorjs dep
josechirivella Aug 29, 2023
26eb225
Merge branch 'next' into vite
josechirivella Sep 25, 2023
8009979
Added external deps
josechirivella Sep 26, 2023
0bc01db
Fixed the imports/exports in package.json
josechirivella Sep 29, 2023
e67b113
Merge branch 'next' into vite
josechirivella Dec 5, 2023
5a07065
indent and missing vue file extensions
josechirivella Dec 16, 2023
4221faa
Merge branch 'next' into vite
josechirivella Dec 29, 2023
30961bf
Added babel plugin for istanbul and using the plugin only on NODE_ENV…
josechirivella Dec 29, 2023
3ff306d
Using the new plugin for vue2.7 and greater
josechirivella Jan 3, 2024
4031c3f
Merge branch 'next' into vite
josechirivella Jan 3, 2024
00a7d0b
Merge branch 'next' into vite
josechirivella Jan 3, 2024
be42a09
Adding an alias for npm build-bundle
josechirivella Jan 4, 2024
604bc5e
Merge branch 'next' into vite
josechirivella Jan 4, 2024
9eb16b5
Regenerated the package-lock.json
josechirivella Jan 4, 2024
8418be6
Locked the validatorjs version and importing the css for vue-multiselect
josechirivella Jan 5, 2024
c5a11da
Added the validatorjs to the externals in Vite
josechirivella Jan 5, 2024
641592e
Switching back to develop for the CI and using npm run dev for cypres…
josechirivella Jan 5, 2024
e8ca9fb
Merge branch 'next' into vite
josechirivella Jan 5, 2024
5f9202b
Commenting out the validatorjs package
josechirivella Jan 8, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": ["istanbul"]
}
File renamed without changes.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ci

on:
on:
pull_request:
types: [opened, reopened, synchronize, edited]

Expand Down Expand Up @@ -36,8 +36,8 @@ jobs:
uses: cypress-io/github-action@v5
with:
install: false
start: npm run serve
wait-on: http://localhost:8080/
start: npm run dev
wait-on: http://localhost:5173/
config-file: cypress.json
spec: "tests/e2e/**/*"
record: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build Package Screen Builder
on:
pull_request:
types: [opened, reopened, synchronize, edited, closed]
workflow_dispatch:
workflow_dispatch:
jobs:
run_deploy:
name: Run Build PM4-workflow
Expand Down
6 changes: 0 additions & 6 deletions babel.config.js

This file was deleted.

17 changes: 17 additions & 0 deletions babel.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
],
"env": {
"test": {
"plugins": ["istanbul"]
}
}
}
2 changes: 1 addition & 1 deletion cypress.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"viewportWidth": 1140,
"viewportHeight": 668,
"pluginsFile": "tests/e2e/plugins/index.js",
"baseUrl": "http://localhost:8080",
"baseUrl": "http://127.0.0.1:5173",
"video": false
}
18 changes: 18 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="favicon.ico">
<title>vue-form-builder</title>
</head>
<body>
<noscript>
<strong>We're sorry but vue-form-builder doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<!-- built files will be auto injected -->
</body>
</html>
Loading
Loading