@zulaica/site-bundler 0.5.0 → 0.5.1
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/package.json +9 -6
- package/.eslintrc.json +0 -19
- package/.gitattributes +0 -7
- package/.github/workflows/lint.yml +0 -17
- package/.prettierrc.json +0 -7
- package/.vscode/extensions.json +0 -11
- package/.vscode/settings.json +0 -15
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zulaica/site-bundler",
|
|
3
3
|
"author": "David Zulaica",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=18.19.1"
|
|
@@ -10,6 +10,14 @@
|
|
|
10
10
|
"bin": {
|
|
11
11
|
"site-bundler": "lib/index.mjs"
|
|
12
12
|
},
|
|
13
|
+
"description": "",
|
|
14
|
+
"main": "index.mjs",
|
|
15
|
+
"directories": {
|
|
16
|
+
"lib": "lib"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"/lib"
|
|
20
|
+
],
|
|
13
21
|
"scripts": {
|
|
14
22
|
"lint": "eslint \"lib/**\"",
|
|
15
23
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -44,11 +52,6 @@
|
|
|
44
52
|
"eslint-plugin-prettier": "5.1.3",
|
|
45
53
|
"prettier": "3.2.5"
|
|
46
54
|
},
|
|
47
|
-
"description": "",
|
|
48
|
-
"main": "index.mjs",
|
|
49
|
-
"directories": {
|
|
50
|
-
"lib": "lib"
|
|
51
|
-
},
|
|
52
55
|
"volta": {
|
|
53
56
|
"node": "18.19.1",
|
|
54
57
|
"npm": "10.2.4"
|
package/.eslintrc.json
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"env": {
|
|
3
|
-
"es2022": true,
|
|
4
|
-
"node": true
|
|
5
|
-
},
|
|
6
|
-
"extends": [
|
|
7
|
-
"eslint:recommended",
|
|
8
|
-
"plugin:prettier/recommended"
|
|
9
|
-
],
|
|
10
|
-
"parserOptions": {
|
|
11
|
-
"sourceType": "module"
|
|
12
|
-
},
|
|
13
|
-
"plugins": [
|
|
14
|
-
"prettier"
|
|
15
|
-
],
|
|
16
|
-
"rules": {
|
|
17
|
-
"no-var": "error"
|
|
18
|
-
}
|
|
19
|
-
}
|
package/.gitattributes
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
name: Lint Code Base
|
|
2
|
-
|
|
3
|
-
on: pull_request
|
|
4
|
-
|
|
5
|
-
jobs:
|
|
6
|
-
lint_javascript:
|
|
7
|
-
name: Lint JavaScript Files
|
|
8
|
-
runs-on: ubuntu-latest
|
|
9
|
-
steps:
|
|
10
|
-
- name: Check out branch
|
|
11
|
-
uses: actions/checkout@v3
|
|
12
|
-
- name: Install Node.js
|
|
13
|
-
uses: volta-cli/action@v1
|
|
14
|
-
- name: Install dependencies
|
|
15
|
-
run: npm ci
|
|
16
|
-
- name: Run lint script
|
|
17
|
-
run: npm run lint
|
package/.prettierrc.json
DELETED
package/.vscode/extensions.json
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
|
|
3
|
-
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
|
|
4
|
-
// List of extensions which should be recommended for users of this workspace.
|
|
5
|
-
"recommendations": [
|
|
6
|
-
"dbaeumer.vscode-eslint",
|
|
7
|
-
"esbenp.prettier-vscode"
|
|
8
|
-
],
|
|
9
|
-
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
|
|
10
|
-
"unwantedRecommendations": []
|
|
11
|
-
}
|
package/.vscode/settings.json
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"editor.codeActionsOnSave": {
|
|
3
|
-
"source.organizeImports": "explicit"
|
|
4
|
-
},
|
|
5
|
-
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
6
|
-
"editor.formatOnSave": true,
|
|
7
|
-
"eslint.run": "onSave",
|
|
8
|
-
"files.exclude": {
|
|
9
|
-
"**/.git": true,
|
|
10
|
-
"**/node_modules": true,
|
|
11
|
-
"**/.DS_Store": true,
|
|
12
|
-
"**/Thumbs.db": true
|
|
13
|
-
},
|
|
14
|
-
"search.exclude": {}
|
|
15
|
-
}
|