Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
fea1d23
Rewriting ARCANESOFT (v4)
arcanedev-maroc Sep 16, 2020
69b5ceb
WIP
arcanedev-maroc Sep 18, 2020
0dadec5
WIP
arcanedev-maroc Sep 28, 2020
b922f40
WIP
arcanedev-maroc Sep 30, 2020
5076c97
WIP
arcanedev-maroc Sep 30, 2020
f3751e0
WIP
arcanedev-maroc Oct 19, 2020
78fca08
WIP
arcanedev-maroc Oct 25, 2020
362266f
WIP
arcanedev-maroc Oct 26, 2020
1a26cc2
WIP
arcanedev-maroc Oct 28, 2020
8e47591
WIP
arcanedev-maroc Oct 29, 2020
d03ac0f
WIP
arcanedev-maroc Oct 30, 2020
a39f4ff
WIP
arcanedev-maroc Oct 30, 2020
32ee69d
WIP
arcanedev-maroc Nov 1, 2020
2717c16
WIP
arcanedev-maroc Nov 2, 2020
5177323
New datatables component with vue 3
arcanedev-maroc Nov 15, 2020
7a3430d
Merge pull request #15 from ARCANESOFT/feature/replacing-datatables-w…
arcanedev-maroc Nov 15, 2020
8b4a99b
WIP
arcanedev-maroc Nov 18, 2020
5021a30
Deleting the old datatable classes
arcanedev-maroc Nov 20, 2020
310757a
Fixing some bugs and refactoring the metrics
arcanedev-maroc Nov 21, 2020
a40b339
WIP
arcanedev-maroc Dec 2, 2020
49609ab
Fixing the auth policy
arcanedev-maroc Dec 3, 2020
2d6434c
WIP
arcanedev-maroc Dec 4, 2020
2950abc
WIP
arcanedev-maroc May 10, 2021
3a1196e
WIP
arcanedev-maroc May 11, 2021
87cabe5
WIP
arcanedev-maroc May 13, 2021
3428acc
WIP
arcanedev-maroc May 16, 2021
d422a22
WIP
arcanedev-maroc Jul 28, 2021
85f9649
WIP
arcanedev-maroc Jul 29, 2021
92faec8
WIP
arcanedev-maroc Jul 29, 2021
cc3f3c8
WIP
arcanedev-maroc Jul 29, 2021
a1e073b
WIP
arcanedev-maroc Jul 30, 2021
8e30412
Remove the old ui classes/helpers
arcanedev-maroc Jul 31, 2021
ae33895
WIP
arcanedev-maroc Aug 2, 2021
f410207
WIP
arcanedev-maroc Aug 2, 2021
35fa688
WIP
arcanedev-maroc Aug 3, 2021
9cf3e6d
WIP
arcanedev-maroc Aug 3, 2021
0c416f6
WIP
arcanedev-maroc Aug 5, 2021
00066a6
WIP
arcanedev-maroc Aug 6, 2021
7b0c536
WIP
arcanedev-maroc Aug 7, 2021
a2bec1e
WIP
arcanedev-maroc Aug 8, 2021
9584750
WIP
arcanedev-maroc Aug 11, 2021
5dcd8ec
WIP
arcanedev-maroc Aug 13, 2021
142ed8a
WIP
arcanedev-maroc Aug 19, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 5 additions & 5 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org

root = true

[*]
end_of_line = lf
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[*.{yml,yaml}]
indent_size = 2
22 changes: 13 additions & 9 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
/_docs export-ignore
/tests export-ignore
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.scrutinizer.yml export-ignore
/.travis.yml export-ignore
/CONTRIBUTING.md export-ignore
/phpunit.xml.dist export-ignore
* text=auto

/.github export-ignore
/_docs export-ignore
/tests export-ignore
.editorconfig export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.scrutinizer.yml export-ignore
.travis.yml export-ignore
phpcs.xml.dist export-ignore
phpunit.xml.dist export-ignore
CONTRIBUTING.md export-ignore
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/build/
/vendor/
/composer.lock
/composer.phar
/composer.lock
.phpunit.result.cache
35 changes: 0 additions & 35 deletions .scrutinizer.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .travis.yml

This file was deleted.

31 changes: 0 additions & 31 deletions CONTRIBUTING.md

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE.md

This file was deleted.

62 changes: 0 additions & 62 deletions README.md

This file was deleted.

4 changes: 4 additions & 0 deletions assets/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/coverage
/node_modules
npm-debug.log
yarn-error.log
16 changes: 16 additions & 0 deletions assets/jest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import type { Config } from '@jest/types';

const config: Config.InitialOptions = {
verbose: true,
preset: 'ts-jest',
clearMocks: true,
testEnvironment: 'node',
collectCoverageFrom: [
"<rootDir>/src/**/*.ts",
],
moduleFileExtensions: [
'ts', 'js',
],
}

export default config
44 changes: 44 additions & 0 deletions assets/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"name": "@arcanesoft/main",
"private": true,
"version": "1.0.0",
"scripts": {
"test": "jest",
"test:cov": "jest --coverage"
},
"dependencies": {
"@arcanescripts/eventter": "^1.0",
"@arcanescripts/request": "^1.0",
"@arcanescripts/translator": "^1.0",
"@arcanesoft/core": "^1.0",
"@arcanesoft/media": "^1.0",
"@arcanesoft/seo": "^1.0",
"@fortawesome/fontawesome-free": "^5.11",
"@popperjs/core": "^2.9.2",
"@toast-ui/editor": "^3.0.0",
"autosize": "^4.0.2",
"axios": "^0.21",
"bootstrap": "^5.1",
"chart.js": "^2.8",
"flatpickr": "^4.6",
"lodash-es": "^4.17",
"moment": "^2.24",
"moment-timezone": "^0.5",
"numeral": "^2.0.6",
"select2": "^4.0.13",
"vue": "^3.0"
},
"devDependencies": {
"@types/jest": "^26.0.7",
"@types/lodash-es": "^4.14",
"@types/node": "^12.7",
"jest": "^26.1.0",
"laravel-mix": "^6.0.0",
"resolve-url-loader": "^4.0.0-alpha.1",
"sass": "^1.27.0",
"sass-loader": "^10.0.1",
"ts-jest": "^26.1.3",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3"
}
}
Loading