Skip to content

Commit

Permalink
v0.0.31
Browse files Browse the repository at this point in the history
  • Loading branch information
vanvianen committed Jan 4, 2024
1 parent e80dde3 commit 7153458
Show file tree
Hide file tree
Showing 11 changed files with 79 additions and 37 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.30
0.0.31
26 changes: 11 additions & 15 deletions bin/js/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bin/js/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bin/ts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ async function main() {

// Install .gl libraries
// --------------------------------------------------------------------
await gl_installer();
// await gl_installer();


// Dirs Clean
Expand Down
5 changes: 4 additions & 1 deletion dist/js/config/package.config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ declare const packageConfig: {
keywords: string;
license: string;
homepage: string;
type: string;
funding: {
type: string;
url: string;
}[];
main: string;
types: string;
files: string[];
Expand Down
8 changes: 7 additions & 1 deletion dist/js/config/package.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,13 @@ const packageConfig = {
keywords: "",
license: "Apache-2.0",
homepage: "https://www.scape.agency",
type: "module",
funding: [
{
"type": "github",
"url": "https://github.com/sponsors/scape-foundation"
}
],
// type: "module",
// main: "js/index",
main: "js/index.js",
// types: "js/index",
Expand Down
37 changes: 32 additions & 5 deletions dist/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pack.gl",
"version": "0.0.30",
"version": "0.0.31",
"description": "Package Builder.",
"keywords": [
"pack.gl",
Expand All @@ -16,18 +16,45 @@
],
"license": "Apache-2.0",
"homepage": "https://www.pack.gl/",
"type": "module",
"main": "js/index",
"types": "js/index",
"files": [
"svg/**/*.svg",
"code-snippets/**/*.code-snippets",
"css/**/*.{css,map}",
"font/**/*.{eot,otf,ttf,woff,woff2}",
"inkscape/**/*.inkscape",
"jinja/**/*.jinja",
"js/**/*.d.ts",
"js/**/*.{js,map}",
"ts/**/*.ts",
"css/**/*.{css,map}",
"less/**/*.less",
"md/**/*.md",
"oco/**/*.oco",
"png/**/*.png",
"py/**/*.py",
"rcpx/**/*.rcpx",
"scss/**/*.scss",
"font/**/*.{eot,otf,ttf,woff,woff2}",
"sketchpalette/**/*.sketchpalette",
"styl/**/*.styl",
"svg/**/*.svg",
"tex/**/*.tex",
"ts/**/*.ts",
"!.DS_Store"
],
"author": "Lars van Vianen <[email protected]> (https://vianen.com)",
"contributors": [
"Scape Agency <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/scape-agency/pack.gl.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/scape-foundation"
}
],
"dependencies": {
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
Expand Down
8 changes: 7 additions & 1 deletion dist/ts/config/package.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,13 @@ const packageConfig = {
keywords: "",
license: "Apache-2.0",
homepage: "https://www.scape.agency",
type: "module",
funding: [
{
"type": "github",
"url": "https://github.com/sponsors/scape-foundation"
}
],
// type: "module",
// main: "js/index",
main: "js/index.js",
// types: "js/index",
Expand Down
14 changes: 6 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pack.gl",
"description": "Package Builder.",
"version": "0.0.30",
"version": "0.0.31",
"config": {
"version_short": "0.0"
},
Expand Down Expand Up @@ -81,7 +81,7 @@
"hue.gl": "^0.0.7",
"icon.gl": "^0.0.4",
"loop.gl": "^0.0.1",
"pack.gl": "^0.0.28",
"pack.gl": "^0.0.25",
"page.gl": "^0.0.3",
"postcss-preset-env": "^9.1.2",
"prettier": "^3.0.3",
Expand Down
8 changes: 7 additions & 1 deletion src/ts/config/package.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,13 @@ const packageConfig = {
keywords: "",
license: "Apache-2.0",
homepage: "https://www.scape.agency",
type: "module",
funding: [
{
"type": "github",
"url": "https://github.com/sponsors/scape-foundation"
}
],
// type: "module",
// main: "js/index",
main: "js/index.js",
// types: "js/index",
Expand Down

0 comments on commit 7153458

Please sign in to comment.