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

Feat: start new front #861

Merged
merged 27 commits into from
Sep 10, 2024
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
36d046e
feat: setup dev folder
ga-devfront Aug 29, 2024
303127d
feat: setup controller to handle assets generated by vite in dev or p…
ga-devfront Aug 29, 2024
6d9fd6e
fix: vite configuration for dev and prod
ga-devfront Aug 30, 2024
a3a5841
fix: remove unused function
ga-devfront Aug 30, 2024
fc55700
fix: add package.json
ga-devfront Aug 30, 2024
7415e74
fix: dotenv
ga-devfront Aug 30, 2024
45f5c7d
fix: cs fixer and php stan issues
ga-devfront Aug 30, 2024
63c23ec
fix: 5.6 syntax check
ga-devfront Aug 30, 2024
fce38b6
feat: add CI for build and check lint JS
ga-devfront Sep 2, 2024
0edf261
fix: eslint config
ga-devfront Sep 2, 2024
9860247
feat: update ci and readme
ga-devfront Sep 2, 2024
8c26830
feat: clean package json with unnecessary packages
ga-devfront Sep 2, 2024
81bb23c
fix: vite.config.ts with ts error
ga-devfront Sep 2, 2024
720f2df
feat: add style and stylelint
ga-devfront Sep 2, 2024
da5f475
feat: add templates
ga-devfront Sep 2, 2024
cff77f4
feat: add index.php
ga-devfront Sep 2, 2024
146f5d2
feat: add storybook
ga-devfront Sep 2, 2024
799545f
feat: add images
ga-devfront Sep 2, 2024
77f808b
feat: remove test javascript
ga-devfront Sep 4, 2024
a8bf6be
feat: add compilation of _dev styles to storybook
ga-devfront Sep 4, 2024
9981e0e
feat: move scss and ts to src and rename folders
ga-devfront Sep 4, 2024
f6b9953
fix: review code
ga-devfront Sep 4, 2024
95028ac
fix: reformat twig templates
ga-devfront Sep 4, 2024
5c389ac
fix: workflow steps name
ga-devfront Sep 4, 2024
c9618ed
fix: review issues
ga-devfront Sep 4, 2024
285e58b
feat: add readme commands for lint and test front and back
ga-devfront Sep 5, 2024
156a717
feat: add instruction for php stan installation
ga-devfront Sep 5, 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
Prev Previous commit
Next Next commit
fix: add package.json
  • Loading branch information
ga-devfront committed Sep 9, 2024
commit fc5570030e8de3ff3d2dd45a83b0c3a1c15f6a5d
47 changes: 47 additions & 0 deletions _dev/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"name": "autoupgrade",
"version": "7.0.0",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version is unnecessary here, and won't be maintained in the future.

Suggested change
"version": "7.0.0",
"private": true,

"type": "module",
"description": "Upgrade to the latest version of PrestaShop in a few clicks, thanks to this automated method.",
"scripts": {
"vite:watch": "vite --config vite.dev.config.ts",
"vite:build": "vite build",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write \"**/*.{ts,js}\""
},
"repository": {
"type": "git",
"url": "[email protected]:PrestaShop/autoupgrade.git"
},
"author": "PrestaShop",
"license": "AFL",
"bugs": {
"url": "https://github.com/PrestaShop/autoupgrade/issues"
},
"homepage": "https://github.com/PrestaShop/autoupgrade#readme",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@eslint/js": "^9.9.1",
"@types/eslint__js": "^8.42.3",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.5.1",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"postcss": "^8.4.41",
"postcss-cli": "^11.0.0",
"prettier": "3.3.3",
"sass": "^1.77.8",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"vite": "^5.4.1"
}
}