aberlaas 2.8.0 → 2.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/aberlaas.js +1 -1
- package/configs/eslint.js +3 -0
- package/configs/lintstaged.js +2 -24
- package/configs/prettier.js +3 -4
- package/configs/stylelint.js +3 -41
- package/configs/vite.js +2 -41
- package/{main.js → lib/main.js} +26 -30
- package/package.json +37 -45
- package/commands/ci/index.js +0 -47
- package/commands/compress/dummy.js +0 -11
- package/commands/compress/index.js +0 -41
- package/commands/compress/png.js +0 -49
- package/commands/init/helper.js +0 -171
- package/commands/init/index.js +0 -59
- package/commands/init/module.js +0 -111
- package/commands/init/monorepo.js +0 -261
- package/commands/lint/circleci.js +0 -81
- package/commands/lint/css.js +0 -73
- package/commands/lint/helpers/prettier.js +0 -54
- package/commands/lint/index.js +0 -50
- package/commands/lint/js.js +0 -73
- package/commands/lint/json.js +0 -60
- package/commands/lint/yml.js +0 -62
- package/commands/precommit/index.js +0 -33
- package/commands/readme/index.js +0 -181
- package/commands/setup/circleci.js +0 -60
- package/commands/setup/github.js +0 -42
- package/commands/setup/helpers/circleci.js +0 -43
- package/commands/setup/helpers/github.js +0 -72
- package/commands/setup/helpers/npm.js +0 -16
- package/commands/setup/helpers/ssh.js +0 -77
- package/commands/setup/index.js +0 -52
- package/commands/setup/renovate.js +0 -54
- package/commands/test/index.js +0 -124
- package/configs/eslint.cjs +0 -154
- package/configs/node.cjs +0 -9
- package/configs/vite/test/setupFiles/captureOutput.js +0 -4
- package/configs/vite/test/setupFiles/dedent.js +0 -4
- package/configs/vite/test/setupFiles/fit-xit-fdescribe-xdescribe.js +0 -13
- package/configs/vite/test/setupFiles/jest-extended.js +0 -10
- package/configs/vite/test/setupFiles/testName.js +0 -9
- package/helper.js +0 -115
- package/templates/LICENSE +0 -9
- package/templates/_circleci/config.yml +0 -33
- package/templates/_eslintignore.conf +0 -12
- package/templates/_eslintrc.cjs +0 -3
- package/templates/_gitattributes +0 -4
- package/templates/_github/README.template.md +0 -7
- package/templates/_github/renovate.json +0 -3
- package/templates/_gitignore +0 -29
- package/templates/_yarnrc.yml +0 -15
- package/templates/lerna.json +0 -6
- package/templates/lib/__tests__/main.js +0 -13
- package/templates/lib/main.js +0 -5
- package/templates/lintstaged.config.js +0 -5
- package/templates/prettier.config.js +0 -5
- package/templates/scripts/ci +0 -6
- package/templates/scripts/compress +0 -4
- package/templates/scripts/docs/build +0 -4
- package/templates/scripts/docs/build-prod +0 -4
- package/templates/scripts/docs/cms +0 -4
- package/templates/scripts/docs/serve +0 -4
- package/templates/scripts/hooks/pre-commit +0 -11
- package/templates/scripts/lib/release +0 -5
- package/templates/scripts/lib/test +0 -5
- package/templates/scripts/lib/test-watch +0 -5
- package/templates/scripts/lint +0 -4
- package/templates/scripts/lint-fix +0 -4
- package/templates/stylelint.config.js +0 -5
- package/templates/vite.config.js +0 -5
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# Hidden files are ignored by default by ESLint
|
|
2
|
-
# The following line will unignore them
|
|
3
|
-
!.*
|
|
4
|
-
|
|
5
|
-
# node_modules in subfolders are not ignored by default
|
|
6
|
-
node_modules/
|
|
7
|
-
|
|
8
|
-
# .yarn contains the yarn source code, we don't need to lint it
|
|
9
|
-
.yarn/
|
|
10
|
-
|
|
11
|
-
# Ignore the documentation for now, I haven't migrated it to ESM yet
|
|
12
|
-
docs/
|
package/templates/_eslintrc.cjs
DELETED
package/templates/_gitattributes
DELETED
package/templates/_gitignore
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
# Hidden files
|
|
2
|
-
.DS_Store
|
|
3
|
-
.envrc
|
|
4
|
-
|
|
5
|
-
# Directories
|
|
6
|
-
build/
|
|
7
|
-
dist/
|
|
8
|
-
node_modules/
|
|
9
|
-
tmp/
|
|
10
|
-
|
|
11
|
-
# Files
|
|
12
|
-
Thumbs.db
|
|
13
|
-
lerna-debug.log
|
|
14
|
-
npm-debug.log
|
|
15
|
-
yarn-error.log
|
|
16
|
-
*~
|
|
17
|
-
|
|
18
|
-
# Yarn
|
|
19
|
-
# https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
|
|
20
|
-
.yarn/*
|
|
21
|
-
!.yarn/patches
|
|
22
|
-
!.yarn/plugins
|
|
23
|
-
!.yarn/releases
|
|
24
|
-
!.yarn/sdks
|
|
25
|
-
!.yarn/versions
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
# Netlify
|
|
29
|
-
.netlify
|
package/templates/_yarnrc.yml
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
compressionLevel: 0
|
|
2
|
-
|
|
3
|
-
defaultSemverRangePrefix: ''
|
|
4
|
-
|
|
5
|
-
enableGlobalCache: true
|
|
6
|
-
|
|
7
|
-
# Keep old-school saving of dependencies in node_modules
|
|
8
|
-
# This makes debugging imported modules so much easier
|
|
9
|
-
nodeLinker: node-modules
|
|
10
|
-
|
|
11
|
-
# Use hardlinks to a global cache
|
|
12
|
-
nmMode: hardlinks-local
|
|
13
|
-
|
|
14
|
-
# Make sure each workspace has its own local node_modules
|
|
15
|
-
nmHoistingLimits: workspaces
|
package/templates/lerna.json
DELETED
package/templates/lib/main.js
DELETED
package/templates/scripts/ci
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env sh
|
|
2
|
-
# This script *should be* automatically triggered before each git commit.
|
|
3
|
-
#
|
|
4
|
-
# If it doesn't work, make sure your local git repo is configured to use
|
|
5
|
-
# ./scripts/hooks as the base directory for git hooks.
|
|
6
|
-
#
|
|
7
|
-
# If not, run:
|
|
8
|
-
# $ git config core.hooksPath scripts/hooks
|
|
9
|
-
set -e
|
|
10
|
-
|
|
11
|
-
yarn run aberlaas precommit
|
package/templates/scripts/lint
DELETED