-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* all imported interfaces are now imported as "import type" * fixed typo in names * better typings * removed unknown theme property * prefix build with version comment * renamed package * created types declaration file * merge same rollupJS piping * added launch config
- Loading branch information
1 parent
34e09df
commit 0ace8d0
Showing
31 changed files
with
481 additions
and
159 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
|
||
"configurations": [ | ||
{ | ||
"name": "Develop", | ||
"type": "node-terminal", | ||
"request": "launch", | ||
"command": "npm run dev", | ||
"serverReadyAction": { | ||
"pattern": " Local:.+(https?://[a-z]+:[0-9]+)", | ||
"uriFormat": "%s/public/", | ||
"action": "debugWithChrome" | ||
} | ||
} | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
{ | ||
"name": "@zoot/cookie-consent", | ||
"name": "@danielsitek/dgp-cookie-consent", | ||
"version": "1.6.2", | ||
"description": "ZOOT cookie consent", | ||
"description": "DGP cookie consent", | ||
"main": "dist/cookies.js", | ||
"types": "./types.d.ts", | ||
"files": [ | ||
"dist" | ||
"dist", | ||
"./types.d.ts" | ||
], | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\"", | ||
|
@@ -17,7 +19,13 @@ | |
}, | ||
"keywords": [ | ||
"cookie", | ||
"cookiebar" | ||
"cookiebar", | ||
"cookieconsent", | ||
"consent", | ||
"gdpr", | ||
"privacy", | ||
"privacybar", | ||
"privacyconsent" | ||
], | ||
"author": "Daniel Sitek <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -37,6 +45,7 @@ | |
"gulp": "^4.0.2", | ||
"gulp-cli": "^2.3.0", | ||
"gulp-eslint": "^6.0.0", | ||
"gulp-insert": "^0.5.0", | ||
"gulp-postcss": "^9.0.1", | ||
"gulp-rename": "^2.0.0", | ||
"gulp-sass": "^5.0.0", | ||
|
@@ -64,4 +73,4 @@ | |
"ie >= 11" | ||
], | ||
"private": "true" | ||
} | ||
} |
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
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
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
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.