@rocketspark/domain-checker 1.0.10 → 1.0.11
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/.claude/commands/pr-create.md +76 -0
- package/.npmrc.example +1 -1
- package/.nvmrc +1 -1
- package/CLAUDE.md +60 -0
- package/build/141.index.js +2 -2
- package/build/147.index.js +2 -2
- package/build/167.index.js +2 -2
- package/build/17.index.js +2 -2
- package/build/194.index.js +2 -2
- package/build/208.index.js +2 -2
- package/build/237.index.js +2 -2
- package/build/245.index.js +2 -2
- package/build/278.index.js +2 -2
- package/build/386.index.js +2 -2
- package/build/404.index.js +2 -2
- package/build/420.index.js +2 -2
- package/build/514.index.js +2 -2
- package/build/524.index.js +2 -2
- package/build/542.index.js +2 -2
- package/build/551.index.js +2 -2
- package/build/567.index.js +2 -2
- package/build/571.index.js +2 -2
- package/build/572.index.js +2 -2
- package/build/584.index.js +2 -2
- package/build/588.index.js +2 -2
- package/build/598.index.js +2 -2
- package/build/60.index.js +2 -2
- package/build/616.index.js +2 -2
- package/build/631.index.js +2 -2
- package/build/643.index.js +2 -2
- package/build/654.index.js +2 -2
- package/build/66.index.js +2 -2
- package/build/697.index.js +2 -2
- package/build/714.index.js +2 -2
- package/build/717.index.js +2 -2
- package/build/795.index.js +2 -2
- package/build/8.index.js +2 -2
- package/build/808.index.js +2 -2
- package/build/810.index.js +2 -2
- package/build/833.index.js +2 -2
- package/build/835.index.js +2 -2
- package/build/847.index.js +2 -2
- package/build/853.index.js +2 -2
- package/build/871.index.js +2 -2
- package/build/890.index.js +2 -2
- package/build/899.index.js +2 -2
- package/build/938.index.js +2 -2
- package/build/964.index.js +2 -2
- package/build/970.index.js +2 -2
- package/build/984.index.js +2 -2
- package/build/993.index.js +2 -2
- package/build/css/index.css +2 -2
- package/build/index.js +3 -3
- package/build/index.js.map +1 -1
- package/package.json +4 -3
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
Create a pull request for the current branch using the repository's PR template.
|
|
2
|
+
|
|
3
|
+
Arguments (optional): $ARGUMENTS
|
|
4
|
+
|
|
5
|
+
## Instructions
|
|
6
|
+
|
|
7
|
+
1. First, gather information about the current branch and changes:
|
|
8
|
+
- Run `git branch --show-current` to get the current branch name
|
|
9
|
+
- Run `git log origin/main..HEAD --oneline` to see all commits on this branch
|
|
10
|
+
- Run `git diff origin/main...HEAD --stat` to see changed files summary
|
|
11
|
+
- Run `git diff origin/main...HEAD` to see the actual changes
|
|
12
|
+
|
|
13
|
+
2. Analyze the changes to understand:
|
|
14
|
+
- What functionality was added, changed, or fixed
|
|
15
|
+
- Which files were modified and their purpose
|
|
16
|
+
- Whether any security-sensitive areas were touched (endpoints, auth, data access)
|
|
17
|
+
- Whether high-risk areas were affected (Login, Signup, Billing, Checkout, etc.)
|
|
18
|
+
|
|
19
|
+
3. Generate a PR title:
|
|
20
|
+
- Keep it under 70 characters
|
|
21
|
+
- Use the format: `<type>: <description>` where type is feat, fix, refactor, docs, test, etc.
|
|
22
|
+
- If the branch name contains a ticket ID (e.g., RCK-12345), include it in the title
|
|
23
|
+
|
|
24
|
+
4. Generate a PR description following this template structure:
|
|
25
|
+
|
|
26
|
+
```markdown
|
|
27
|
+
# Description of change:
|
|
28
|
+
|
|
29
|
+
[Summarize what was changed and why in 2-4 sentences]
|
|
30
|
+
|
|
31
|
+
## Testing notes
|
|
32
|
+
|
|
33
|
+
[Describe how to test the changes. Include:
|
|
34
|
+
- Steps to reproduce/verify the changes work
|
|
35
|
+
- Any specific test data or setup needed
|
|
36
|
+
- Note if automated tests were added/updated]
|
|
37
|
+
|
|
38
|
+
## Stability Risk Factor Prevention
|
|
39
|
+
|
|
40
|
+
[Assess the risk level:
|
|
41
|
+
- Does this affect critical paths? (Login, Signup, Billing, Checkout, Design Partners, content editing)
|
|
42
|
+
- If yes, recommend appropriate testing/review level
|
|
43
|
+
- If no, state "This PR does not affect high-risk critical paths."]
|
|
44
|
+
|
|
45
|
+
## Security
|
|
46
|
+
|
|
47
|
+
[Assess security implications:
|
|
48
|
+
- If new/changed endpoints: note that SC1/SC2 documentation may be needed
|
|
49
|
+
- If changes to data access: note what was changed
|
|
50
|
+
- If no security implications: state "No security-sensitive changes in this PR."]
|
|
51
|
+
|
|
52
|
+
### Required checks
|
|
53
|
+
|
|
54
|
+
[Add any context-specific checks based on the changes]
|
|
55
|
+
|
|
56
|
+
### Additional optional checks
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
5. Create the PR using:
|
|
60
|
+
```bash
|
|
61
|
+
gh pr create --title "<title>" --body "$(cat <<'EOF'
|
|
62
|
+
<generated description>
|
|
63
|
+
EOF
|
|
64
|
+
)"
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
6. If $ARGUMENTS contains "draft", add the `--draft` flag to create a draft PR.
|
|
68
|
+
|
|
69
|
+
7. After creating the PR, display the PR URL to the user.
|
|
70
|
+
|
|
71
|
+
## Important Notes
|
|
72
|
+
|
|
73
|
+
- If the branch has no commits ahead of main, inform the user and do not create a PR
|
|
74
|
+
- If the branch is not pushed to remote, push it first with `git push -u origin <branch>`
|
|
75
|
+
- Use a HEREDOC for the PR body to preserve formatting
|
|
76
|
+
- Include the co-author line at the end of the body
|
package/.npmrc.example
CHANGED
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
24.13.1
|
package/CLAUDE.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# CLAUDE.md
|
|
2
|
+
|
|
3
|
+
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
|
4
|
+
|
|
5
|
+
## Project Overview
|
|
6
|
+
|
|
7
|
+
Embeddable domain availability checker widget for Rocketspark. Published as `@rocketspark/domain-checker` on npm and served via jsDelivr CDN. Built as a UMD library that auto-initializes on `.rs-domain-check` DOM elements.
|
|
8
|
+
|
|
9
|
+
## Commands
|
|
10
|
+
|
|
11
|
+
| Command | Purpose |
|
|
12
|
+
|---------|---------|
|
|
13
|
+
| `npm start` | Dev server on port 6000 |
|
|
14
|
+
| `npm run build` | Production webpack build + TypeScript declarations |
|
|
15
|
+
| `npm run build:watch` | Watch mode for development |
|
|
16
|
+
| `npm run test` | Run Jest tests |
|
|
17
|
+
| `npm run coverage` | Generate test coverage report |
|
|
18
|
+
|
|
19
|
+
## Architecture
|
|
20
|
+
|
|
21
|
+
**Entry point:** `src/lib/index.ts` — `DomainChecker` class, exported as UMD global.
|
|
22
|
+
|
|
23
|
+
Component hierarchy (all vanilla TypeScript, no framework):
|
|
24
|
+
```
|
|
25
|
+
DomainChecker
|
|
26
|
+
├── DomainSearch — Input validation, domain formatting, triggers API
|
|
27
|
+
├── PopupContainer — Modal with search results
|
|
28
|
+
│ ├── SearchHeading
|
|
29
|
+
│ ├── SearchResultCaption — Price display
|
|
30
|
+
│ ├── SearchAlternatives
|
|
31
|
+
│ │ └── SearchAlternativeRow
|
|
32
|
+
│ └── Cart — Shopping cart state/UI
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
**Key helpers in `src/lib/Helpers/`:**
|
|
36
|
+
- `Fetch.ts` — API calls to CMS backend with reCAPTCHA v3 tokens
|
|
37
|
+
- `templates.ts` — All HTML generation (~436 lines of DOM creation)
|
|
38
|
+
- `defaults.ts` — Default config, CSS class name mappings (BEM notation)
|
|
39
|
+
- `localeTld.ts` — Locale (NZ/AU/UK/US) to TLD mapping
|
|
40
|
+
|
|
41
|
+
**Data flow:** User input → domain validation/formatting → reCAPTCHA token → POST to CMS API → render results in popup → add to cart or search alternatives.
|
|
42
|
+
|
|
43
|
+
## Tech Stack
|
|
44
|
+
|
|
45
|
+
- **Language:** TypeScript 4.6, transpiled via Babel
|
|
46
|
+
- **Bundler:** Webpack 5 (UMD output)
|
|
47
|
+
- **CSS:** PostCSS with px-to-rem conversion
|
|
48
|
+
- **UI Components:** `@rocketspark/flint-ui` web components (rs-button, rs-input, rs-icon, etc.)
|
|
49
|
+
- **Testing:** Jest 28 with jsdom environment
|
|
50
|
+
- **Linting:** ESLint with TypeScript rules (explicit return types, member accessibility, single quotes, semicolons)
|
|
51
|
+
|
|
52
|
+
## Locale System
|
|
53
|
+
|
|
54
|
+
The widget is locale-aware via `data-locale` attribute on the container element. Each locale maps to a TLD (.co.nz, .com.au, .co.uk, .com), currency (NZD/AUD/GBP/USD), and tax label (GST/VAT).
|
|
55
|
+
|
|
56
|
+
## CI/CD
|
|
57
|
+
|
|
58
|
+
- **PR/push:** Runs `npm install` + `npm run test` (and `npm run build` on PRs)
|
|
59
|
+
- **Release:** On GitHub release publish → tests → auto-bumps patch version → builds → commits build artifacts → publishes to npm
|
|
60
|
+
- Post-publish: manually clear jsDelivr cache and update rocketspark.com references
|
package/build/141.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/147.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/167.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/17.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/194.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/208.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/237.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/245.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/278.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/386.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/404.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/420.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/514.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/524.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/542.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/551.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/567.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/571.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/572.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/584.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/588.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/598.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/60.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/616.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/631.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/643.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/654.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/66.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/697.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/714.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/717.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/795.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/8.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/808.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/810.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/833.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/835.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/847.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/853.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/871.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/890.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/899.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/938.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/964.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|
package/build/970.index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @rocketspark/domain-checker v1.0.
|
|
4
|
-
* https://github.com/rocketspark/domain-checker.git
|
|
3
|
+
* @rocketspark/domain-checker v1.0.11
|
|
4
|
+
* git+https://github.com/rocketspark/domain-checker.git
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) Lee Reichardt and project contributors.
|
|
7
7
|
*
|