Skip to content

Commit c0fb0be

Browse files
📦 sveltekit
1 parent fa84494 commit c0fb0be

28 files changed

+4631
-4934
lines changed

.eslintignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.DS_Store
2+
node_modules
3+
/build
4+
/dist
5+
/.svelte-kit
6+
/package
7+
.env
8+
.env.*
9+
!.env.example
10+
svelte.config.js
11+
playwright.config.ts
12+
13+
# Ignore files for PNPM, NPM and YARN
14+
pnpm-lock.yaml
15+
package-lock.json
16+
yarn.lock

.eslintrc.cjs

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
module.exports = {
2+
root: true,
3+
extends: [
4+
'himynameisdave/configurations/core',
5+
'himynameisdave/configurations/typescript',
6+
'himynameisdave/configurations/svelte',
7+
],
8+
parser: '@typescript-eslint/parser',
9+
plugins: ['@typescript-eslint'],
10+
parserOptions: {
11+
sourceType: 'module',
12+
ecmaVersion: 2020,
13+
extraFileExtensions: ['.svelte'],
14+
project: true,
15+
tsconfigRootDir: __dirname,
16+
},
17+
env: {
18+
browser: true,
19+
es2017: true,
20+
node: true,
21+
},
22+
overrides: [
23+
{
24+
files: ['*.svelte'],
25+
parser: 'svelte-eslint-parser',
26+
parserOptions: {
27+
parser: '@typescript-eslint/parser'
28+
}
29+
}
30+
],
31+
rules: {
32+
'svelte/max-attributes-per-line': ['error', {
33+
'multiline': 1,
34+
'singleline': 3,
35+
}]
36+
},
37+
};

.github/dependabot.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "npm"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"
12+
day: "sunday"
13+
time: "09:00"
14+
# Use Pacific Standard Time (UTC -08:00)
15+
timezone: "America/Los_Angeles"

.github/workflows/lint.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: test
2+
on: [
3+
push,
4+
pull_request
5+
]
6+
env:
7+
CI: true
8+
jobs:
9+
test:
10+
name: "Test on Node.js ${{ matrix.node-version }}"
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
node-version: [16, 18]
15+
steps:
16+
- name: checkout
17+
uses: actions/checkout@v2
18+
- name: setup Node.js ${{ matrix.node-version }}
19+
uses: actions/setup-node@v1
20+
with:
21+
node-version: ${{ matrix.node-version }}
22+
- name: Install
23+
run: yarn install
24+
- name: Lint
25+
run: yarn test

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
node-version: [14, 16]
14+
node-version: [16, 18]
1515
steps:
1616
- name: checkout
1717
uses: actions/checkout@v2

.gitignore

+10-43
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,11 @@
1-
# Build dir
2-
lib/
3-
4-
# Test app, for testing out changes
5-
test-app/
6-
7-
# Logs
8-
logs
9-
*.log
10-
npm-debug.log*
11-
yarn-debug.log*
12-
yarn-error.log*
13-
14-
# Directory for instrumented libs generated by jscoverage/JSCover
15-
lib-cov
16-
17-
# Coverage directory used by tools like istanbul
18-
coverage
19-
*.lcov
20-
21-
# Dependency directories
22-
node_modules/
23-
24-
# Optional npm cache directory
25-
.npm
26-
27-
# Optional eslint cache
28-
.eslintcache
29-
30-
# Optional REPL history
31-
.node_repl_history
32-
33-
# Output of 'npm pack'
34-
*.tgz
35-
36-
# Yarn Integrity file
37-
.yarn-integrity
38-
39-
# dotenv environment variables file
1+
.DS_Store
2+
node_modules
3+
/build
4+
/dist
5+
/.svelte-kit
6+
/package
407
.env
41-
.env.test
42-
43-
# macos trash
44-
*.DS_Store
8+
.env.*
9+
!.env.example
10+
vite.config.js.timestamp-*
11+
vite.config.ts.timestamp-*

.husky/pre-commit

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
yarn lint-staged

.npmrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
engine-strict=true
2+
resolution-mode=highest

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Dave Lunny
3+
Copyright (c) 2023 Dave Lunny
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

jest.config.js

-17
This file was deleted.

package.json

+55-32
Original file line numberDiff line numberDiff line change
@@ -4,47 +4,71 @@
44
"version": "1.3.0",
55
"author": {
66
"name": "himynameisdave",
7-
"email": "[email protected]"
7+
"email": "[email protected]",
8+
"url": "https://himynameisdave.com"
9+
},
10+
"type": "module",
11+
"main": "./dist/index.js",
12+
"svelte": "./dist/index.js",
13+
"types": "./dist/index.d.ts",
14+
"scripts": {
15+
"dev": "vite dev",
16+
"build": "vite build && npm run package",
17+
"preview": "vite preview",
18+
"package": "svelte-kit sync && svelte-package && publint",
19+
"prepublishOnly": "npm run package",
20+
"test": "npm run check && npm run lint && npm run test:integration",
21+
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
22+
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
23+
"lint": "eslint . --ext .js,.ts,.svelte",
24+
"lint:fix": "eslint . --ext .js,.ts,.svelte --fix",
25+
"test:integration": "playwright test",
26+
"release": "npm run package && np --no-yarn"
27+
},
28+
"exports": {
29+
".": {
30+
"types": "./dist/index.d.ts",
31+
"svelte": "./dist/index.js",
32+
"default": "./dist/index.js"
33+
}
834
},
9-
"svelte": "src/index.js",
10-
"module": "lib/index.mjs",
11-
"main": "lib/index.js",
1235
"files": [
13-
"src",
14-
"lib"
36+
"dist",
37+
"!dist/**/*.test.*",
38+
"!dist/**/*.spec.*"
1539
],
16-
"scripts": {
17-
"build": "rollup -c",
18-
"test": "jest src",
19-
"release": "np --no-yarn"
40+
"engines": {
41+
"node": ">= 16"
2042
},
21-
"devDependencies": {
22-
"@babel/core": "^7.19.1",
23-
"@babel/preset-env": "^7.19.1",
24-
"@rollup/plugin-node-resolve": "^14.1.0",
25-
"@testing-library/jest-dom": "^5.16.5",
26-
"@testing-library/svelte": "^3.2.1",
27-
"babel-jest": "^29.0.3",
28-
"husky": "^8.0.1",
29-
"jest": "^29.0.3",
30-
"jest-environment-jsdom": "^29.0.3",
31-
"np": "^7.6.2",
32-
"rollup": "^2.79.0",
33-
"rollup-plugin-svelte": "^7.1.0",
34-
"svelte": "^3.50.1",
35-
"svelte-jester": "^2.3.2"
43+
"lint-staged": {
44+
"*.ts": "eslint ./ --fix --quiet",
45+
"*.svelte": "eslint ./ --fix --quiet"
3646
},
3747
"peerDependencies": {
38-
"svelte": ">= ^3.46.2"
48+
"svelte": "^4.0.0"
3949
},
40-
"husky": {
41-
"hooks": {
42-
"pre-commit": "npm test"
43-
}
50+
"devDependencies": {
51+
"@playwright/test": "^1.37.1",
52+
"@sveltejs/adapter-auto": "^2.0.0",
53+
"@sveltejs/kit": "^1.24.1",
54+
"@sveltejs/package": "^2.2.2",
55+
"eslint-config-himynameisdave": "^8.1.0",
56+
"husky": "^8.0.3",
57+
"less": "^4.2.0",
58+
"lint-staged": "^14.0.1",
59+
"np": "^8.0.4",
60+
"publint": "^0.2.2",
61+
"svelte": "^4.2.0",
62+
"svelte-check": "^3.5.1",
63+
"tslib": "^2.6.2",
64+
"typescript": "^5.2.2",
65+
"vite": "^4.4.9"
4466
},
4567
"keywords": [
4668
"svelte",
47-
"svelte-component",
69+
"component",
70+
"frontend",
71+
"svelte-components",
4872
"flexbox",
4973
"svelte-flexbox",
5074
"ui-component",
@@ -56,6 +80,5 @@
5680
},
5781
"homepage": "https://github.com/himynameisdave/svelte-flex",
5882
"license": "MIT",
59-
"sideEffects": false,
6083
"private": false
6184
}

playwright.config.ts

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import type { PlaywrightTestConfig } from '@playwright/test';
2+
3+
const config: PlaywrightTestConfig = {
4+
webServer: {
5+
command: 'npm run build && npm run preview',
6+
port: 4173
7+
},
8+
testDir: 'tests',
9+
testMatch: /(.+\.)?(test|spec)\.[jt]s/,
10+
// Uncomment this to enable headful browser, useful for debugging.
11+
// use: {
12+
// headless: false,
13+
// },
14+
};
15+
16+
export default config;

rollup.config.js

-29
This file was deleted.

src/Flex.d.ts

-22
This file was deleted.

0 commit comments

Comments
 (0)