Skip to content

Commit 876a2bb

Browse files
committed
remove experimental task, tests, namespace
1 parent c09b96c commit 876a2bb

File tree

6 files changed

+6
-36
lines changed

6 files changed

+6
-36
lines changed

build/Gruntfile.ls

-5
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ module.exports = (grunt)->
2222
'./tests/tests.js': './tests/tests/*'
2323
'./tests/library.js': './tests/library/*'
2424
'./tests/es.js': './tests/tests/es*'
25-
'./tests/experimental.js': './tests/experimental/*'
2625
'./build/index.js': './build/build.ls*'
2726
clean: <[./library]>
2827
copy: lib: files:
@@ -79,8 +78,4 @@ module.exports = (grunt)->
7978
grunt.option \library ''
8079
grunt.option \path './client/shim'
8180
grunt.task.run <[build:es,esnext,web uglify]>
82-
grunt.registerTask \e ->
83-
grunt.option \library ''>
84-
grunt.option \path './client/core'
85-
grunt.task.run <[build:es,esnext,web,core,exp uglify]>
8681
grunt.registerTask \default <[clean copy client library shim]>

build/build.ls

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
require! {
22
'../library/fn/promise': Promise
3-
'./config': {list, experimental, libraryBlacklist, banner}
3+
'./config': {list, libraryBlacklist, banner}
44
fs: {readFile, writeFile, unlink}
55
path: {basename, dirname, join}
66
webpack, temp
@@ -9,11 +9,10 @@ require! {
99
module.exports = ({modules = [], blacklist = [], library = no, umd = on})->
1010
resolve, reject <~! new Promise _
1111
let @ = modules.reduce ((memo, it)-> memo[it] = on; memo), {}
12-
if @exp => for experimental => @[..] = on
1312
for ns of @
1413
if @[ns]
1514
for name in list
16-
if name.indexOf("#ns.") is 0 and name not in experimental
15+
if name.indexOf("#ns.") is 0
1716
@[name] = on
1817

1918
if library => blacklist ++= libraryBlacklist

build/config.js

-2
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,6 @@ module.exports = {
195195
'core.get-iterator',
196196
'core.is-iterable',
197197
],
198-
experimental: [
199-
],
200198
libraryBlacklist: [
201199
'es.object.to-string',
202200
'es.function.name',

build/index.js

+4-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/experimental.html

-11
This file was deleted.

tests/experimental.js

Whitespace-only changes.

0 commit comments

Comments
 (0)