Skip to content

Commit c9f4e6a

Browse files
committed
Release 1.0.0 ✨
1 parent ce55ab8 commit c9f4e6a

File tree

4 files changed

+16
-13
lines changed

4 files changed

+16
-13
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](https://semver.org/).
55

6+
## 1.0.0 2021-05-05
7+
* Stable Release
8+
* Bug fixes
9+
610
## 0.0.11 2021-05-02
711
* Improved Khronos binaries distribution
812
* Better error handling for stage-less *.glsl files

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rollup-plugin-glsl-optimize",
3-
"version": "0.0.16",
3+
"version": "1.0.0",
44
"description": "Import GLSL source files as strings. Pre-processed, validated and optimized with Khronos Group SPIRV-Tools. Supports glslify.",
55
"homepage": "https://github.com/docd27/rollup-plugin-glsl-optimize#readme",
66
"keywords": [
@@ -67,7 +67,7 @@
6767
"devDependencies": {
6868
"@rollup/plugin-commonjs": "^18.0.0",
6969
"@rollup/plugin-node-resolve": "^13.0.0",
70-
"@types/node": "^15.0.1",
70+
"@types/node": "^15.0.2",
7171
"c8": "^7.6.0",
7272
"chai": "^4.3.4",
7373
"chai-as-promised": "^7.1.1",

src/lib/download.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
import * as fsSync from 'fs';
2-
import {URL} from 'url';
2+
import {URL, URLSearchParams} from 'url';
33
import {default as createHttpsProxyAgent} from 'https-proxy-agent';
44
import {default as TFileCache} from '@derhuerst/http-basic/lib/FileCache.js';
55
import {default as request} from '@derhuerst/http-basic';
66
import {default as ProgressBar} from 'progress';
77
import {default as AdmZip} from 'adm-zip';
88
import {argQuote, getCachePath, runTool} from './tools.js';
9-
import { URLSearchParams } from 'node:url';
109

1110
/**
1211
* @typedef {import('@derhuerst/http-basic/lib/FileCache.js').default} FileCacheInst

0 commit comments

Comments
 (0)