added glsl-transform file

This commit is contained in:
ojack
2023-05-30 09:06:25 +03:00
parent c35302482e
commit a5d27e1234
7 changed files with 19406 additions and 7581 deletions

View File

@@ -2,7 +2,6 @@
## [1.3.9] - 2023-05-30
### Added
- documentation for self-generating certificates
- esmify
### Fixed
- import/export resolution

View File

@@ -6,7 +6,7 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"uglify": "terser ./public/bundle.js --source-map \"content=inline\" -o ./public/bundle.min.js",
"watch": "watchify -p esmify ./index.js -v -o ./public/bundle.js",
"watch": "watchify ./index.js -v -o ./public/bundle.js",
"build": "browserify ./index.js --debug -o ./public/bundle.js && npm run uglify",
"source-map": "source-map-explorer ./public/bundle.min.js ./public/bundle.min.js.map"
},
@@ -31,7 +31,6 @@
},
"devDependencies": {
"browserify": "^17.0.0",
"esmify": "^2.1.1",
"source-map-explorer": "^2.5.2",
"terser": "^5.14.2",
"watchify": "^4.0.0"

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -3,7 +3,8 @@ const {generate} = require('astring');
const { defaultTraveler, attachComments, makeTraveler } = require('astravel');
const {UndoStack} = require('./UndoStack.js');
const repl = require('./../repl.js')
const glslTransforms = require('hydra-synth/src/glsl/glsl-functions.js')()
// const glslTransforms = require('hydra-synth/src/glsl/glsl-functions.js')()
const glslTransforms = require('./glslTransforms.js')
class Mutator {

File diff suppressed because it is too large Load Diff