-
-
Notifications
You must be signed in to change notification settings - Fork 651
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Convert to ESM * More esm tweaks * Update rollup.config.mjs * Tweak deepmerge
- Loading branch information
1 parent
62d041c
commit 741062b
Showing
16 changed files
with
127 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,7 +52,7 @@ You can use jsDelivr to pull down any release from npm. For example, you could i | |
with: | ||
|
||
```html | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/shepherd.min.js"></script> | ||
<script type="module" src="https://cdn.jsdelivr.net/npm/[email protected]/dist/shepherd.js"></script> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/shepherd.css"/> | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,15 +13,20 @@ | |
"Chuck Carpenter <[email protected]>" | ||
], | ||
"scripts": { | ||
"build": "pnpm -F shepherd.js build", | ||
"build": "pnpm -F shepherd.js build && pnpm build:landing", | ||
"dev": "pnpm watch", | ||
"docs": "node_modules/.bin/jsdoc -c .jsdoc.js --verbose", | ||
"build:landing": "pnpm -F landing build", | ||
"lint:js": "pnpm -F '*' lint:js", | ||
"start": "pnpm watch", | ||
"test:ci": "pnpm build && pnpm test:unit:ci && pnpm test:cy:ci:chrome", | ||
"test:cy:ci:chrome": "pnpm -F cypress-tests test:ci:chrome", | ||
"test:cy:watch": "pnpm -F cypress-tests test:watch", | ||
"test:unit:ci": "pnpm -F unit-tests test:ci", | ||
"test:unit:watch": "pnpm -F unit-tests test:watch", | ||
"types:check": "pnpm -F shepherd.js types:check", | ||
"view-coverage": "pnpm -F unit-tests view-coverage" | ||
"view-coverage": "pnpm -F unit-tests view-coverage", | ||
"watch": "pnpm -F shepherd.js watch" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.23.5", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.