@zulaica/site-bundler 0.4.5 → 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 CHANGED
@@ -1,15 +1,23 @@
1
1
  {
2
2
  "name": "@zulaica/site-bundler",
3
3
  "author": "David Zulaica",
4
- "version": "0.4.5",
4
+ "version": "0.5.1",
5
5
  "type": "module",
6
6
  "engines": {
7
- "node": ">=16.18.1"
7
+ "node": ">=18.19.1"
8
8
  },
9
9
  "license": "UNLICENSED",
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"
@@ -22,35 +30,30 @@
22
30
  "url": "https://github.com/zulaica/site-bundler/issues"
23
31
  },
24
32
  "homepage": "https://github.com/zulaica/site-bundler#readme",
25
- "volta": {
26
- "node": "16.18.1",
27
- "npm": "8.19.2"
28
- },
29
33
  "dependencies": {
30
- "@babel/core": "7.21.0",
31
- "@babel/parser": "7.21.2",
32
- "@babel/preset-env": "7.20.2",
33
- "commander": "10.0.0",
34
- "cssnano": "5.1.15",
35
- "cssnano-preset-advanced": "5.3.10",
36
- "htmlnano": "2.0.3",
37
- "postcss": "8.4.21",
38
- "postcss-import": "15.1.0",
39
- "postcss-preset-env": "8.0.1",
34
+ "@babel/core": "7.24.0",
35
+ "@babel/parser": "7.24.0",
36
+ "@babel/preset-env": "7.24.0",
37
+ "commander": "12.0.0",
38
+ "cssnano": "6.1.0",
39
+ "cssnano-preset-advanced": "6.1.0",
40
+ "htmlnano": "2.1.0",
41
+ "postcss": "8.4.35",
42
+ "postcss-import": "16.0.1",
43
+ "postcss-preset-env": "9.5.0",
40
44
  "postcss-url": "10.1.3",
41
45
  "posthtml": "0.16.6",
42
46
  "posthtml-hash": "1.2.2",
43
- "rollup": "3.19.1"
47
+ "rollup": "4.12.1"
44
48
  },
45
49
  "devDependencies": {
46
- "eslint": "8.36.0",
47
- "eslint-config-prettier": "8.7.0",
48
- "eslint-plugin-prettier": "4.2.1",
49
- "prettier": "2.8.4"
50
+ "eslint": "8.57.0",
51
+ "eslint-config-prettier": "9.1.0",
52
+ "eslint-plugin-prettier": "5.1.3",
53
+ "prettier": "3.2.5"
50
54
  },
51
- "description": "",
52
- "main": "index.mjs",
53
- "directories": {
54
- "lib": "lib"
55
+ "volta": {
56
+ "node": "18.19.1",
57
+ "npm": "10.2.4"
55
58
  }
56
59
  }
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,7 +0,0 @@
1
- # Configuration Files
2
- .vscode/*.json linguist-language=JSON5
3
- .eslintrc.json linguist-language=JSON5
4
- .prettierrc.json linguist-language=JSON5
5
-
6
- # Generated Files
7
- package-lock.json linguist-generated
@@ -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
@@ -1,7 +0,0 @@
1
- {
2
- "arrowParens": "always",
3
- "bracketSpacing": true,
4
- "singleQuote": true,
5
- "trailingComma": "none",
6
- "tabWidth": 2
7
- }
@@ -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
- }
@@ -1,23 +0,0 @@
1
- {
2
- "editor.codeActionsOnSave": {
3
- "source.organizeImports": true
4
- },
5
- "editor.formatOnSave": true,
6
- "eslint.run": "onSave",
7
- "files.exclude": {
8
- "**/.git": true,
9
- "**/node_modules": true,
10
- "**/.DS_Store": true,
11
- "**/Thumbs.db": true
12
- },
13
- "search.exclude": {},
14
- "[javascript]": {
15
- "editor.defaultFormatter": "esbenp.prettier-vscode"
16
- },
17
- "[json]": {
18
- "editor.defaultFormatter": "esbenp.prettier-vscode"
19
- },
20
- "[jsonc]": {
21
- "editor.defaultFormatter": "vscode.json-language-features"
22
- }
23
- }