remove old packages

This commit is contained in:
Rohid
2024-08-12 23:00:47 +06:00
parent 72b76768dd
commit 769f6fd921
4 changed files with 44 additions and 2844 deletions

View File

@@ -1,7 +1,7 @@
@import 'node_modules/bootswatch/dist/materia/_variables'; @import 'bootswatch/dist/materia/_variables';
@import 'node_modules/bootstrap/scss/bootstrap'; @import 'bootstrap/scss/bootstrap';
@import 'node_modules/bootswatch/dist/materia/_bootswatch'; @import 'bootswatch/dist/materia/_bootswatch';
@import 'node_modules/font-awesome/scss/font-awesome'; @import 'font-awesome/scss/font-awesome';
@import 'variables'; @import 'variables';
@import 'partials/_animations'; @import 'partials/_animations';

2873
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -102,12 +102,11 @@
"lint-staged": "^13.1.0", "lint-staged": "^13.1.0",
"mocha": "^10.2.0", "mocha": "^10.2.0",
"mocha-sinon": "^2.1.2", "mocha-sinon": "^2.1.2",
"node-gyp": "^8.3.0",
"node-sass": "^8.0.0",
"prettier": "^2.8.2", "prettier": "^2.8.2",
"prettier-plugin-packagejson": "^2.3.0", "prettier-plugin-packagejson": "^2.3.0",
"prettier-plugin-sort-json": "1.0.0", "prettier-plugin-sort-json": "1.0.0",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"sass": "^1.77.8",
"shelljs": "^0.8.5", "shelljs": "^0.8.5",
"sinon": "^15.0.1", "sinon": "^15.0.1",
"sinon-chai": "^3.7.0", "sinon-chai": "^3.7.0",

View File

@@ -78,15 +78,15 @@ load({
), ),
), ),
], ],
'build-sass': exec('sass assets/sass/app.scss public/css/app.css --load-path=node_modules'),
clean: [exec('rimraf public coverage vendor web-ext-artifacts'), 'clean:webpack'], clean: [exec('rimraf public coverage vendor web-ext-artifacts'), 'clean:webpack'],
'clean:webpack': exec('rimraf dist'), 'clean:webpack': exec('rimraf dist'),
dev: ['clean', 'postinstall', concurrent('watch', 'web-ext:run:firefox', 'web-ext:run:chrome')], dev: ['clean', 'postinstall', concurrent('watch', 'web-ext:run:firefox', 'web-ext:run:chrome')],
eslint: exec('eslint src . --fix'), eslint: exec('eslint src . --fix'),
lint: ['prettier', 'eslint'], lint: ['prettier', 'eslint'],
postinstall: ['clean', makePublicFolder, copyFromNodeModules, 'sass'], postinstall: ['clean', makePublicFolder, copyFromNodeModules, 'build-sass'],
prettier: [exec('prettier --write .')], prettier: [exec('prettier --write .')],
'remotedev-server': exec('remotedev --hostname=localhost --port=8000'), 'remotedev-server': exec('remotedev --hostname=localhost --port=8000'),
sass: exec('node-sass assets/sass/app.scss public/css/app.css'),
test: ['build', 'lint', 'test-jest'], test: ['build', 'lint', 'test-jest'],
'test-jest': [exec('jest --clearCache'), exec('jest --verbose --coverage')], 'test-jest': [exec('jest --clearCache'), exec('jest --verbose --coverage')],
watch: concurrent('watch-jest', 'webpack:watch'), watch: concurrent('watch-jest', 'webpack:watch'),