Skip to content

Commit

Permalink
Merge 2d6434c into 2c24885
Browse files Browse the repository at this point in the history
  • Loading branch information
arcanedev-maroc committed Dec 4, 2020
2 parents 2c24885 + 2d6434c commit f16fd12
Show file tree
Hide file tree
Showing 938 changed files with 45,207 additions and 4,192 deletions.
10 changes: 5 additions & 5 deletions .editorconfig
@@ -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
@@ -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
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,4 +1,4 @@
/build/
/vendor/
/composer.lock
/composer.phar
/composer.lock
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
@@ -0,0 +1,4 @@
/coverage
/node_modules
npm-debug.log
yarn-error.log
16 changes: 16 additions & 0 deletions assets/jest.config.ts
@@ -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
43 changes: 43 additions & 0 deletions assets/package.json
@@ -0,0 +1,43 @@
{
"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",
"@fortawesome/fontawesome-free": "^5.11",
"@toast-ui/editor": "^2.2.0",
"autosize": "^4.0.2",
"axios": "^0.19",
"bootstrap": "twbs/bootstrap#main",
"chart.js": "^2.8",
"flatpickr": "^4.6",
"lodash-es": "^4.17",
"moment": "^2.24",
"moment-timezone": "^0.5",
"numeral": "^2.0.6",
"popper.js": "^1.16",
"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-beta.14",
"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"
}
}

0 comments on commit f16fd12

Please sign in to comment.